diff options
author | Jacob Torrey <discipleofranok@gmail.com> | 2016-08-27 06:29:19 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-08-27 06:29:19 -0600 |
commit | f1ba51cf8902b8470e7b176eb3c54925abecefd9 (patch) | |
tree | 80015a68ba5d483cd7018baa9d49e520b1dbedf4 | |
parent | Build the core_tests under Travis (diff) | |
download | monero-f1ba51cf8902b8470e7b176eb3c54925abecefd9.tar.xz |
remove -Wall from coverage arguments
-rw-r--r-- | CMakeLists.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index de0bb3a5e..b5589450b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -392,9 +392,9 @@ else() set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -DGTEST_HAS_TR1_TUPLE=0") endif() if(CMAKE_C_COMPILER_ID STREQUAL "GNU" AND NOT (CMAKE_C_COMPILER_VERSION VERSION_LESS 4.8)) - set(DEBUG_FLAGS "-g3 -Og -Wall -fprofile-arcs -ftest-coverage --coverage") + set(DEBUG_FLAGS "-g3 -Og -fprofile-arcs -ftest-coverage --coverage") else() - set(DEBUG_FLAGS "-g3 -O0 -Wall -fprofile-arcs -ftest-coverage --coverage") + set(DEBUG_FLAGS "-g3 -O0 -fprofile-arcs -ftest-coverage --coverage") endif() if(NOT DEFINED USE_LTO_DEFAULT) |