diff options
-rw-r--r-- | CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index bdf2375..4ca449a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -16,7 +16,7 @@ find_package(PkgConfig) option(DEBUG_BUILD "This is debug build." OFF) # set gcc flags -set(CMAKE_C_FLAGS "-Wall -O2") +set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wall -O2") if(DEBUG_BUILD) add_definitions(-DDEBUG) |