diff options
author | Alec Thomas <alec@swapoff.org> | 2014-05-03 19:58:37 -0400 |
---|---|---|
committer | Alec Thomas <alec@swapoff.org> | 2014-05-03 19:58:37 -0400 |
commit | 792609b7e3ce32d18e1415a4408bc1757a91cdc3 (patch) | |
tree | 8e14601c94c034efb37c66c42c7981e5672e840d /CMakeLists.txt | |
parent | 4fa8b553c24e8de69195f35a6c55f9ccf23339a6 (diff) |
Add -g to release builds.
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 6282fc0..b56ab3b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -21,8 +21,8 @@ include(CheckCXXSourceCompiles) if ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "GNU" OR "${CMAKE_CXX_COMPILER_ID}" STREQUAL "Clang") set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -pedantic -Werror -Wall -Wextra -Wno-unused-parameter -Wno-error=unused-variable -Wno-error=sign-compare -std=c++11") set(CMAKE_CXX_FLAGS_DEBUG "-O0 -g") - set(CMAKE_CXX_FLAGS_MINSIZEREL "-Os -DNDEBUG") - set(CMAKE_CXX_FLAGS_RELEASE "-O2 -DNDEBUG") + set(CMAKE_CXX_FLAGS_MINSIZEREL "-g -Os -DNDEBUG") + set(CMAKE_CXX_FLAGS_RELEASE "-g -O2 -DNDEBUG") set(CMAKE_CXX_FLAGS_RELWITHDEBINFO "-O2 -g") elseif("${CMAKE_CXX_COMPILER_ID}" STREQUAL "MSVC") # /Zi - Produces a program database (PDB) that contains type information and symbolic debugging information for use with the debugger. |