switched MacOS CI to debug mode

This commit is contained in:
AlexandreRouma
2024-01-19 19:11:01 +01:00
parent 5a1945f779
commit eabb842b6b
2 changed files with 2 additions and 2 deletions

View File

@@ -71,7 +71,7 @@ if (${CMAKE_BUILD_TYPE} MATCHES "Debug")
if (MSVC)
set(SDRPP_COMPILER_FLAGS /std:c++17 /EHsc)
elseif (CMAKE_CXX_COMPILER_ID MATCHES "Clang")
set(SDRPP_COMPILER_FLAGS -g -Og -std=c++17 -Wno-unused-command-line-argument -undefined dynamic_lookup)
set(SDRPP_COMPILER_FLAGS -g -Og -std=c++17 -Wno-unused-command-line-argument -undefined dynamic_lookup -fsanitize=address)
else ()
set(SDRPP_COMPILER_FLAGS -g -Og -std=c++17)
endif ()