mirror of
https://github.com/Mr-Wiseguy/Zelda64Recomp.git
synced 2024-11-18 03:39:16 +01:00
9 lines
199 B
CMake
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}")
|