]> code.bitgloo.com Git - clyne/entityx.git/commitdiff
Add -g to release builds.
authorAlec Thomas <alec@swapoff.org>
Sat, 3 May 2014 23:58:37 +0000 (19:58 -0400)
committerAlec Thomas <alec@swapoff.org>
Sat, 3 May 2014 23:58:37 +0000 (19:58 -0400)
CMakeLists.txt
entityx/tags/TagsComponent_test.cc

index 6282fc09592fe8e0cbad510936ed77f725466f72..b56ab3b8515e3e4bffddb0df6e320b9c49cf7990 100644 (file)
@@ -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.
index 036ad16ea9b0ab5b23a89520c2b443ee0b7a7463..71a66ede6c9f016672e0d015b9796970e65877ab 100644 (file)
@@ -27,7 +27,7 @@ int size(const T &t) {
   int n = 0;
   for (auto i : t) {
     ++n;
-    (void)i; // Unused on purpose, suppress warning
+    (void)i;  // Unused on purpose, suppress warning
   }
   return n;
 }