diff options
author | Alec Thomas <alec@swapoff.org> | 2013-03-24 13:56:01 -0400 |
---|---|---|
committer | Alec Thomas <alec@swapoff.org> | 2013-03-24 13:56:14 -0400 |
commit | e8a0388c324f23756ba4a7f308a876738ccc02b4 (patch) | |
tree | 76dc25fad363a345b8dd0ee3d410b533f6d00db3 | |
parent | 824b32a692c8a0702de23301e11b8a2a7078697b (diff) |
Remove unused flag that broke clang 3.x.
Fixes #5.
-rw-r--r-- | CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index bfc22aa..e286b93 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -53,7 +53,7 @@ set(Boost_USE_MULTITHREADED ON) set(Boost_USE_STATIC_RUNTIME OFF) find_package(Boost 1.48.0 REQUIRED COMPONENTS signals) -set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -pedantic -Werror -Wall -Wextra -Wno-unused-parameter -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=sign-compare -std=c++11") +set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -pedantic -Werror -Wall -Wextra -Wno-unused-parameter -Wno-error=unused-variable -Wno-error=sign-compare -std=c++11") set(CMAKE_CXX_FLAGS_DEBUG "-O0 -g") set(CMAKE_CXX_FLAGS_MINSIZEREL "-Os -DNDEBUG") set(CMAKE_CXX_FLAGS_RELEASE "-O2 -DNDEBUG") |