Skip to content
Snippets Groups Projects
Commit 2ffb1fc4 authored by Markus Blatt's avatar Markus Blatt
Browse files

Make CMake work with disabled version check.

Before this commit setting DISABLE_CXX_VERSION_CHECK to true resulted
in the CMake error:

CMake Error at cmake/modules/CheckCXXFeatures.cmake:110 (if):
  if given arguments:

    "14" "GREATER"

  Unknown arguments specified
Call Stack (most recent call first):
  cmake/modules/CheckCXXFeatures.cmake:199 (dune_require_cxx_standard)
  cmake/modules/DuneMacros.cmake:690 (include)
  CMakeLists.txt:17 (dune_project)
parent bbd8dfdd
No related branches found
No related tags found
1 merge request!408Make CMake work with disabled version check.
Pipeline #
......@@ -94,7 +94,7 @@ set(CXX_VERSIONS_FLAGS "17\;1z" "14\;1y")
# by default, we enable C++14 for now, but not C++17
# The user can override this choice by explicitly setting this variable
set(CXX_MAX_STANDARD 17 CACHE STRING "highest version of the C++ standard to enable")
set(CXX_MAX_STANDARD 17 CACHE STRING "highest version of the C++ standard to enable. This version is also used if the version check is disabled")
function(dune_require_cxx_standard)
......@@ -191,7 +191,10 @@ CMAKE_CXX_FLAGS."
)
set(CXX_MAX_SUPPORTED_STANDARD 3)
endif()
else()
# We did not check version but need to set maximum supported
# version for some checks. Therefore we set it to CXX_MAX_STANDARD.
set(CXX_MAX_SUPPORTED_STANDARD ${CXX_MAX_STANDARD})
endif()
# make sure we have at least C++14
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment