Enables vixl asserts when in debug mode globally

Fixes an issue where some header asserts were missed
This commit is contained in:
Ryan Houdek 2021-01-27 00:52:37 -08:00
parent 536be23f68
commit f58d018934

View File

@ -92,6 +92,9 @@ if (CMAKE_SYSTEM_PROCESSOR MATCHES "aarch64")
add_definitions(-D_M_ARM_64=1)
add_subdirectory(External/vixl/)
include_directories(External/vixl/src/)
if(CMAKE_BUILD_TYPE MATCHES DEBUG)
add_definitions(-DVIXL_DEBUG=1)
endif()
endif()
if (CMAKE_CXX_COMPILER_ID STREQUAL "GNU")