diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2018-11-14 22:06:35 +0100 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2018-11-14 22:06:35 +0100 |
commit | 638ed2ecf5e83979861625c6c86892613a637ea5 (patch) | |
tree | 9f0f2eb3be75a4ec144a1a58cec361f22ba5bcfd | |
parent | 88adc5d703a9b8b74dde76f106bb80fc1320dcca (diff) | |
download | weechat-638ed2ecf5e83979861625c6c86892613a637ea5.zip |
core: fix C++ compiler flags (cmake)
-rw-r--r-- | CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index ff9ed87ef..0ae69ea0f 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -28,7 +28,7 @@ set(CMAKE_VERBOSE_MAKEFILE OFF) set(CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/cmake ${CMAKE_MODULE_PATH}) set(CMAKE_SKIP_RPATH ON) set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wall -Wextra -Werror-implicit-function-declaration") -set(CMAKE_CXX_FLAGS "${CMAKE_C_FLAGS} -Wall -Wextra -Werror-implicit-function-declaration") +set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall -Wextra -Werror-implicit-function-declaration") # version execute_process(COMMAND ${CMAKE_SOURCE_DIR}/version.sh devel-major OUTPUT_VARIABLE VERSION_MAJOR) |