diff options
author | Alec Thomas <alec@swapoff.org> | 2014-12-24 20:07:50 +1100 |
---|---|---|
committer | Alec Thomas <alec@swapoff.org> | 2014-12-24 20:07:50 +1100 |
commit | 532834612856611f9483cbfdb3ffd08bfc987a22 (patch) | |
tree | 34df1fbaed7b0bb0564e7fbdd1ce769a8152ad65 | |
parent | 065a123aaac4f89658fb6fcfa902f89e8bc6e047 (diff) |
CMake fix for AppleClang.
-rwxr-xr-x | CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 8d8601c..c026e6c 100755 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -23,7 +23,7 @@ include(${CMAKE_ROOT}/Modules/CheckIncludeFile.cmake) include(CheckCXXSourceCompiles) # Default compiler args -if ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "GNU" OR "${CMAKE_CXX_COMPILER_ID}" STREQUAL "Clang") +if ("${CMAKE_CXX_COMPILER_ID}" MATCHES "(GNU|.*Clang)") 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 "-g -Os -DNDEBUG") |