diff options
author | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2017-07-19 17:55:24 +0900 |
---|---|---|
committer | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2017-07-19 17:55:24 +0900 |
commit | 40b65a93981233c2420e8a4eb653add8c438b446 (patch) | |
tree | 6ac57a3319a558eec740504d9b091c1bba798756 | |
parent | 95a6d19a4336571f5af703fa953e161c66f16e37 (diff) | |
download | libquotient-40b65a93981233c2420e8a4eb653add8c438b446.tar.gz libquotient-40b65a93981233c2420e8a4eb653add8c438b446.zip |
Restore compatibility with CMake versions below 3.3
-rw-r--r-- | CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index bca58b40..9254e029 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -22,7 +22,7 @@ endif() # Setup command line parameters for the compiler and linker CHECK_CXX_COMPILER_FLAG("-Wall" WALL_FLAG_SUPPORTED) if ( WALL_FLAG_SUPPORTED AND NOT CMAKE_CXX_FLAGS MATCHES "(^| )-Wall($| )") - string(APPEND CMAKE_CXX_FLAGS " -Wall") + set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall") endif ( WALL_FLAG_SUPPORTED ) if ( CMAKE_VERSION VERSION_LESS "3.1" ) |