Zelda64Recomp/cmake/ZREDetectNEON.cmake
2024-05-22 00:52:49 +02:00

9 lines
199 B
CMake

if(NOT DEFINED SUPPORTS_NEON)
try_compile(SUPPORTS_NEON
"${CMAKE_BINARY_DIR}"
"${CMAKE_SOURCE_DIR}/cmake/checks/cpu_neon.cpp"
)
endif()
message(STATUS "SUPPORTS NEON: ${SUPPORTS_NEON}")