Skip to content
Snippets Groups Projects
Commit ffb6ed13 authored by Dmitri Naumov's avatar Dmitri Naumov
Browse files

cmake; Separate compile flags with ; not with ' '.

parent 56555ed6
No related branches found
No related tags found
No related merge requests found
...@@ -11,7 +11,7 @@ if(OGS_ADDRESS_SANITIZER) ...@@ -11,7 +11,7 @@ if(OGS_ADDRESS_SANITIZER)
endif() endif()
if(OGS_UNDEFINED_BEHAVIOR_SANITIZER) if(OGS_UNDEFINED_BEHAVIOR_SANITIZER)
set(SANITIZE_FLAG_VALUE "${SANITIZE_FLAG_VALUE},undefined,integer -fsanitize-blacklist=${CMAKE_CURRENT_SOURCE_DIR}/scripts/test/clang_sanitizer_blacklist.txt") set(SANITIZE_FLAG_VALUE "${SANITIZE_FLAG_VALUE},undefined,integer;-fsanitize-blacklist=${CMAKE_CURRENT_SOURCE_DIR}/scripts/test/clang_sanitizer_blacklist.txt")
endif() endif()
if(DEFINED SANITIZE_FLAG_VALUE) if(DEFINED SANITIZE_FLAG_VALUE)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment