mirror of
https://github.com/melonDS-emu/melonDS.git
synced 2024-11-14 13:27:41 -07:00
8 lines
272 B
CMake
8 lines
272 B
CMake
|
set(SANITIZE "" CACHE STRING "Sanitizers to enable.")
|
||
|
|
||
|
string(REGEX MATCHALL "[^,]+" ENABLED_SANITIZERS "${SANITIZE}")
|
||
|
|
||
|
foreach(SANITIZER ${ENABLED_SANITIZERS})
|
||
|
add_compile_options("-fsanitize=${SANITIZER}")
|
||
|
add_link_options("-fsanitize=${SANITIZER}")
|
||
|
endforeach()
|