We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 49160c7 commit 9b507f4Copy full SHA for 9b507f4
CMakeLists.txt
@@ -16,6 +16,13 @@
16
cmake_minimum_required (VERSION 3.20 FATAL_ERROR)
17
# cmake_policy(VERSION 3.18)
18
19
+# See https://cmake.org/cmake/help/latest/policy/CMP0048.html#policy:CMP0048
20
+# as of Feb 2026, dunesw mrb-built products set the version in the
21
+# CMAKE_PROJECT_VERSION_STRING set, and not in the project line.
22
+# but we must be using the OLD policy. Setting the version string
23
+# here will get overwritten by the project line with the same value when
24
+# we migrate to the NEW policy
25
+
26
set(PROJECT_VERSION 03.12.00)
27
project(duneanaobj VERSION ${PROJECT_VERSION} LANGUAGES CXX)
28
set(${PROJECT_NAME}_CMAKE_PROJECT_VERSION_STRING ${PROJECT_VERSION})
0 commit comments