We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents fec113c + b7ebdb6 commit ee740d2Copy full SHA for ee740d2
CMakeLists.txt
@@ -5,6 +5,12 @@ if(NOT CMAKE_VERSION VERSION_LESS "3.3")
5
cmake_policy(SET CMP0063 NEW)
6
endif()
7
8
+if (NOT CMAKE_VERSION VERSION_LESS "3.13")
9
+ # CMP0077: option() honors normal variables
10
+ # https://cmake.org/cmake/help/latest/policy/CMP0077.html
11
+ cmake_policy(SET CMP0077 NEW)
12
+endif()
13
+
14
project(Cucumber-Cpp)
15
16
option(BUILD_SHARED_LIBS "Generate shared libraries" OFF)
0 commit comments