diff options
author | shfil <filip.gawin@zoho.com> | 2021-01-24 21:34:53 +0100 |
---|---|---|
committer | Filip Gawin <filip.gawin@zoho.com> | 2021-01-24 21:35:53 +0100 |
commit | 513d418771a031973ce6735e1020e6e7822b26e6 (patch) | |
tree | 1eab403bb0457a6c619f16bf5d6df427e0decc3a | |
parent | Ped: car enter anim. fix (diff) | |
download | re3-513d418771a031973ce6735e1020e6e7822b26e6.tar re3-513d418771a031973ce6735e1020e6e7822b26e6.tar.gz re3-513d418771a031973ce6735e1020e6e7822b26e6.tar.bz2 re3-513d418771a031973ce6735e1020e6e7822b26e6.tar.lz re3-513d418771a031973ce6735e1020e6e7822b26e6.tar.xz re3-513d418771a031973ce6735e1020e6e7822b26e6.tar.zst re3-513d418771a031973ce6735e1020e6e7822b26e6.zip |
-rw-r--r-- | src/CMakeLists.txt | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index ad72eb56..f3d51b06 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -79,6 +79,21 @@ endif() target_compile_definitions(${EXECUTABLE} PRIVATE ) +option(${PROJECT}_WITH_SANITIZERS "Use UB sanitizers (better crash log)" OFF) +option(${PROJECT}_WITH_ASAN "Use Address sanitizer (better crash log)" OFF) + +if(${PROJECT}_WITH_SANITIZERS) + target_compile_options(${EXECUTABLE} PUBLIC + -fsanitize=undefined,float-divide-by-zero,integer,implicit-conversion,implicit-integer-truncation,implicit-integer-arithmetic-value-change,local-bounds,nullability + -g3 -fno-omit-frame-pointer) + target_link_options(${EXECUTABLE} PUBLIC -fsanitize=undefined,float-divide-by-zero,integer,implicit-conversion,implicit-integer-truncation,implicit-integer-arithmetic-value-change,local-bounds,nullability) +endif() + +if(${PROJECT}_WITH_ASAN) + target_compile_options(${EXECUTABLE} PUBLIC -fsanitize=address -g3 -fno-omit-frame-pointer) + target_link_options(${EXECUTABLE} PUBLIC -fsanitize=address) +endif() + if(CMAKE_CXX_COMPILER_ID STREQUAL "GNU" OR CMAKE_CXX_COMPILER_ID STREQUAL "Clang" OR CMAKE_CXX_COMPILER_ID STREQUAL "AppleClang") target_compile_options(${EXECUTABLE} PRIVATE |