diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 6d7a620a1..dcec944a4 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -56,7 +56,7 @@ set_property (TARGET task_executable PROPERTY OUTPUT_NAME "task") install (TARGETS task_executable DESTINATION ${TASK_BINDIR}) set (CMAKE_BUILD_TYPE debug) -set (CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} -ggdb3 -Wall") +set (CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} -g -Wall") set (CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} -O3 -Wall") #SET(CMAKE_BUILD_TYPE gcov) diff --git a/src/columns/CMakeLists.txt b/src/columns/CMakeLists.txt index db1c19907..9d66eb26a 100644 --- a/src/columns/CMakeLists.txt +++ b/src/columns/CMakeLists.txt @@ -34,7 +34,7 @@ set (columns_SRCS Column.cpp Column.h add_library (columns STATIC ${columns_SRCS}) set (CMAKE_BUILD_TYPE debug) -set (CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} -ggdb3 -Wall") +set (CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} -g -Wall") set (CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} -O3 -Wall") diff --git a/src/commands/CMakeLists.txt b/src/commands/CMakeLists.txt index 9138c1ea6..d2ff29a93 100644 --- a/src/commands/CMakeLists.txt +++ b/src/commands/CMakeLists.txt @@ -55,7 +55,7 @@ set (commands_SRCS Command.cpp Command.h add_library (commands STATIC ${commands_SRCS}) set (CMAKE_BUILD_TYPE debug) -set (CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} -ggdb3 -Wall") +set (CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} -g -Wall") set (CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} -O3 -Wall") #SET(CMAKE_BUILD_TYPE gcov)