Zelda64Recomp/cmake/ZREDetectNEON.cmake

9 lines
199 B
CMake
Raw Normal View History

2024-05-22 00:52:49 +02:00
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}")