summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorArseny Kapoulkine <arseny.kapoulkine@gmail.com>2015-09-23 08:40:25 -0700
committerArseny Kapoulkine <arseny.kapoulkine@gmail.com>2015-09-23 08:41:42 -0700
commit2cda053345f75ca961b4d35def88ad6c06945f01 (patch)
tree5e4d00414a9085ec80be3b4271556f252080c44f /scripts
parent3229e677120550a5a40b5b37ec46de6c2cad974c (diff)
scripts: Enable C++11 in CMakeLists
We now make sure that in CMake builds we have long long support. This requires CMake 3.1 for target_compile_features. Fixes #53 (as long as packages use this CMake script... most of them do)
Diffstat (limited to 'scripts')
-rw-r--r--scripts/CMakeLists.txt5
1 files changed, 5 insertions, 0 deletions
diff --git a/scripts/CMakeLists.txt b/scripts/CMakeLists.txt
index 0f72001..cf9577e 100644
--- a/scripts/CMakeLists.txt
+++ b/scripts/CMakeLists.txt
@@ -25,6 +25,11 @@ else()
add_library(pugixml STATIC ${SOURCES})
endif()
+# Enable C++11 long long for compilers that are capable of it
+if(NOT ${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION} STRLESS 3.1)
+ target_compile_features(pugixml PUBLIC cxx_long_long_type)
+endif()
+
set_target_properties(pugixml PROPERTIES VERSION 1.6 SOVERSION 1)
install(TARGETS pugixml EXPORT pugixml-config