mirror of
https://github.com/Mr-Wiseguy/Zelda64Recomp.git
synced 2024-11-18 03:39:16 +01:00
9 lines
206 B
CMake
9 lines
206 B
CMake
if(NOT DEFINED SUPPORTS_SSE42)
|
|
try_compile(SUPPORTS_SSE42
|
|
"${CMAKE_BINARY_DIR}"
|
|
"${CMAKE_SOURCE_DIR}/cmake/checks/cpu_sse42.cpp"
|
|
)
|
|
endif()
|
|
|
|
message(STATUS "SUPPORTS SSE4.2 = ${SUPPORTS_SSE42}")
|