Merge pull request #20712 from oursland/revert-20674-specify_maximum_version

Revert "Build:add maximum cmake compatible version"
This commit is contained in:
Kacper Donat
2025-04-08 22:56:21 +02:00
committed by GitHub
2 changed files with 4 additions and 4 deletions

View File

@@ -1,10 +1,6 @@
# As of February 2025 we require CMake 3.22.0
cmake_minimum_required(VERSION 3.22.0 FATAL_ERROR)
# Check for maximum version
if (CMAKE_VERSION VERSION_GREATER_EQUAL "4.0.0")
message(FATAL_ERROR "The required CMake version is before 4.0.0.")
endif()
# As of cMake 3.27, find_package() will look for both case-sensitive and all-uppercase versions
# of the package. This seems to affect FLANN as included by Pixi

View File

@@ -13,6 +13,10 @@
"CMAKE_EXPORT_COMPILE_COMMANDS": {
"type": "BOOL",
"value": "ON"
},
"CMAKE_POLICY_VERSION_MINIMUM": {
"type": "STRING",
"value": "3.5"
}
}
},