diff options
| author | Adam <adammegarules1@gmail.com> | 2026-07-26 19:59:56 +0200 |
|---|---|---|
| committer | Adam <adammegarules1@gmail.com> | 2026-07-26 19:59:56 +0200 |
| commit | 94cc9240eabf78cbbc9006cb70ca74b6bc3f54e6 (patch) | |
| tree | 09829afd7836f3aa4dfe62b9e699e0bd493ff9a3 /CMakeLists.txt | |
| parent | 5686b9b6fe63c8c1874cc891bbf1db02bb45868b (diff) | |
readme + cmake upgrades
Diffstat (limited to 'CMakeLists.txt')
| -rw-r--r-- | CMakeLists.txt | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index ec93cc0..a970f50 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -26,10 +26,13 @@ else() ) endif() -target_compile_options(${PROJECT_NAME} PRIVATE - -fsanitize=address,undefined -) +if (NOT MSVC AND CMAKE_BUILD_TYPE STREQUAL "Debug") + target_compile_options(${PROJECT_NAME} PRIVATE + -fsanitize=address,undefined + -fno-omit-frame-pointer + ) -target_link_options(${PROJECT_NAME} PRIVATE - -fsanitize=address,undefined -) + target_link_options(${PROJECT_NAME} PRIVATE + -fsanitize=address,undefined + ) +endif() |
