aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlec Thomas <alec@swapoff.org>2014-05-03 19:58:37 -0400
committerAlec Thomas <alec@swapoff.org>2014-05-03 19:58:37 -0400
commit792609b7e3ce32d18e1415a4408bc1757a91cdc3 (patch)
tree8e14601c94c034efb37c66c42c7981e5672e840d
parent4fa8b553c24e8de69195f35a6c55f9ccf23339a6 (diff)
Add -g to release builds.
-rw-r--r--CMakeLists.txt4
-rw-r--r--entityx/tags/TagsComponent_test.cc2
2 files changed, 3 insertions, 3 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.
diff --git a/entityx/tags/TagsComponent_test.cc b/entityx/tags/TagsComponent_test.cc
index 036ad16..71a66ed 100644
--- a/entityx/tags/TagsComponent_test.cc
+++ b/entityx/tags/TagsComponent_test.cc
@@ -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;
}