]> git.jsancho.org Git - lugaru.git/commitdiff
Fix CXX flags in various CMake build types
authorRémi Verschelde <rverschelde@gmail.com>
Wed, 7 Dec 2016 21:44:56 +0000 (22:44 +0100)
committerRémi Verschelde <rverschelde@gmail.com>
Wed, 7 Dec 2016 21:44:56 +0000 (22:44 +0100)
The flags we were defining for _DEBUG and _RELEASE were similar to the default
CMake flags for those types, which get appended to CMAKE_CXX_FLAGS, so we only
need to customize the latter.

The final flags will be for e.g. RelWithDebInfo:
${CMAKE_CXX_FLAGS} ${CXXFLAGS} ${CMAKE_CXX_FLAGS_RELWITHDEBINFO}
with ${CXXFLAGS} taken from the environment.

CMakeLists.txt

index 84a24ed2699fb51e082960626a6ca72dfaaaa5b6..6b5f2266cbd6836d76e38dc384eb484f5388de0d 100644 (file)
@@ -18,9 +18,7 @@ endif()
 
 ### CMake config
 
-set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -O0 --std=c++11")
-set(CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} -Wall -Wno-parentheses -pedantic -g -pg --std=c++11")
-set(CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} -Wall -Wno-parentheses -O2 -std=c++11")
+set(CMAKE_CXX_FLAGS "-Wall -Wno-parentheses --std=c++11 ${CMAKE_CXX_FLAGS}")
 
 if(APPLE)
     set(CMAKE_OSX_ARCHITECTURES "x86_64" CACHE STRING "Build architectures for OSX")