Browse Source

Merge pull request #9509 from zeule/cmake-cxx14

cmake: use C++14 when available
adaptive-webui-19844
Eugene Shalygin 6 years ago committed by GitHub
parent
commit
019da6a98c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 8
      src/CMakeLists.txt

8
src/CMakeLists.txt

@ -1,5 +1,13 @@
set(CMAKE_CXX_STANDARD_REQUIRED True) set(CMAKE_CXX_STANDARD_REQUIRED True)
# If C++14 is available, use it as libtorent ABI depends on 11/14 version
if (cxx_std_14 IN_LIST CMAKE_CXX_COMPILE_FEATURES)
message(STATUS "Building in C++14 mode")
set(CMAKE_CXX_STANDARD "14")
else()
message(STATUS "Building in C++11 mode")
set(CMAKE_CXX_STANDARD "11") set(CMAKE_CXX_STANDARD "11")
endif()
include(MacroQbtCompilerSettings) include(MacroQbtCompilerSettings)
qbt_set_compiler_options() qbt_set_compiler_options()

Loading…
Cancel
Save