diff options
author | Bruno de Oliveira Abinader <bruno@mapbox.com> | 2017-07-10 18:20:26 +0300 |
---|---|---|
committer | Bruno de Oliveira Abinader <bruno@mapbox.com> | 2017-07-12 20:42:29 +0300 |
commit | 2954a2a40d1078c3e3772e86ad97796e5d94a9ca (patch) | |
tree | fb2d18e444c9e76aa2dbdb85a025a4c02426b9cf | |
parent | c163402f641c9d9b86d5851c6acfbe11c400f15b (diff) | |
download | qtlocation-mapboxgl-2954a2a40d1078c3e3772e86ad97796e5d94a9ca.tar.gz |
[build] OSX build fix for GCC 4.9
-rw-r--r-- | CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 033c289018..0acc58004c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -71,7 +71,7 @@ endif(WITH_COVERAGE) set(CMAKE_CONFIGURATION_TYPES Debug Release) set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++14 -ftemplate-depth=1024 -Wall -Wextra -Wshadow -Wnon-virtual-dtor -Werror -Wno-variadic-macros -Wno-unknown-pragmas") -if(APPLE) +if(APPLE AND CMAKE_CXX_COMPILER_ID MATCHES ".*Clang") # -Wno-error=unused-command-line-argument is required due to https://llvm.org/bugs/show_bug.cgi?id=7798 set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-error=unused-command-line-argument") endif() |