summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArseny Kapoulkine <arseny.kapoulkine@gmail.com>2016-06-18 01:51:28 -0700
committerArseny Kapoulkine <arseny.kapoulkine@gmail.com>2016-06-18 01:51:28 -0700
commit4dbb5646196a4a3cc94097f1473ef11d1d44df11 (patch)
tree80839fee8dad897556bc82a7d302aca88a92240c
parenteec353c4437b6ac110d1aadac0fae83ab8166e13 (diff)
Only enable cxx_long_long_type if it is in the list of features
Fixes #99.
-rw-r--r--CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index d33750a..018e728 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -41,7 +41,7 @@ else()
endif()
# Enable C++11 long long for compilers that are capable of it
-if(NOT ${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION} STRLESS 3.1)
+if(NOT ${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION} STRLESS 3.1 AND ";${CMAKE_CXX_COMPILE_FEATURES};" MATCHES ";cxx_long_long_type;")
target_compile_features(pugixml PUBLIC cxx_long_long_type)
endif()