X-Git-Url: http://sigrok.org/gitweb/?a=blobdiff_plain;ds=sidebyside;f=CMakeLists.txt;h=45055ab8e66a72f885bdb7580e4e242b44c59817;hb=HEAD;hp=395222a25a7838a1717eb0c4427850d32696ebaa;hpb=e0a90b4c5d6b1163a2cbece13a90f2737f0814d4;p=pulseview.git diff --git a/CMakeLists.txt b/CMakeLists.txt index 395222a2..ec86073d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -83,23 +83,39 @@ include(memaccess) find_package(PkgConfig) -check_cxx_compiler_flag("-std=c++17" HAVE_STD_CXX_17) -check_cxx_compiler_flag("-std=c++14" HAVE_STD_CXX_14) -check_cxx_compiler_flag("-std=c++11" HAVE_STD_CXX_11) -if(HAVE_STD_CXX_17) - message(STATUS "Using C++17 for the application build") - set(CMAKE_CXX_STANDARD 17) - set(REQUIRED_STD_CXX_FLAGS "-std=c++17") -elseif(HAVE_STD_CXX_14) - message(STATUS "Using C++14 for the application build") - set(CMAKE_CXX_STANDARD 14) - set(REQUIRED_STD_CXX_FLAGS "-std=c++14") -elseif(HAVE_STD_CXX_11) - message(STATUS "Using C++11 for the application build") - set(CMAKE_CXX_STANDARD 11) - set(REQUIRED_STD_CXX_FLAGS "-std=c++11") +if(CMAKE_VERSION VERSION_EQUAL "3.8.0" OR CMAKE_VERSION VERSION_GREATER "3.8.0") + check_cxx_compiler_flag("-std=c++17" HAVE_STD_CXX_17) + check_cxx_compiler_flag("-std=c++14" HAVE_STD_CXX_14) + check_cxx_compiler_flag("-std=c++11" HAVE_STD_CXX_11) + if(HAVE_STD_CXX_17) + message(STATUS "Using C++17 for the application build") + set(CMAKE_CXX_STANDARD 17) + set(REQUIRED_STD_CXX_FLAGS "-std=c++17") + elseif(HAVE_STD_CXX_14) + message(STATUS "Using C++14 for the application build") + set(CMAKE_CXX_STANDARD 14) + set(REQUIRED_STD_CXX_FLAGS "-std=c++14") + elseif(HAVE_STD_CXX_11) + message(STATUS "Using C++11 for the application build") + set(CMAKE_CXX_STANDARD 11) + set(REQUIRED_STD_CXX_FLAGS "-std=c++11") + else() + message(FATAL_ERROR "Need modern C++, at least language standard 11") + endif() else() - message(FATAL_ERROR "Need modern C++, at least language standard 11") + check_cxx_compiler_flag("-std=c++14" HAVE_STD_CXX_14) + check_cxx_compiler_flag("-std=c++11" HAVE_STD_CXX_11) + if(HAVE_STD_CXX_14) + message(STATUS "Using C++14 for the application build") + set(CMAKE_CXX_STANDARD 14) + set(REQUIRED_STD_CXX_FLAGS "-std=c++14") + elseif(HAVE_STD_CXX_11) + message(STATUS "Using C++11 for the application build") + set(CMAKE_CXX_STANDARD 11) + set(REQUIRED_STD_CXX_FLAGS "-std=c++11") + else() + message(FATAL_ERROR "Need modern C++, at least language standard 11") + endif() endif() list(APPEND PKGDEPS glib-2.0>=2.28.0)