Skip to content
Snippets Groups Projects
Unverified Commit 30d05d5e authored by René Fritze's avatar René Fritze
Browse files

[cmake] fix another whitespace/list/string snafu

parent 8b0c1c16
No related branches found
No related tags found
No related merge requests found
......@@ -51,8 +51,9 @@ execute_process(
)
SET( DS_FLAGS_Release CACHE STRING
"-O2 -fPIC ${CMAKE_CXX_FLAGS_RELEASE}")
set(DS_FLAGS_RelWithDebInfo "-g ${DS_FLAGS_Release}")
"-O2" "-fPIC" "${CMAKE_CXX_FLAGS_RELEASE}")
set(DS_FLAGS_RelWithDebInfo
"-g" "${DS_FLAGS_Release}")
SET( DS_FLAGS_Debug CACHE STRING
"-O0 -g3 -ggdb -Wunused-variable -fno-strict-aliasing -fPIC -Wall -Wextra -Wparentheses -pedantic -Wshadow -Wundef -Wnon-virtual-dtor")
......
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