Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dune-common
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Core Modules
dune-common
Commits
c71fb236
Commit
c71fb236
authored
1 year ago
by
Christoph Grüninger
Browse files
Options
Downloads
Patches
Plain Diff
[cmake] Prevent use of incomaptible CMake version 3.29.1
parent
e547ab20
Branches
Branches containing commit
Tags
Tags containing commit
1 merge request
!1368
[cmake] Prevent use of incomaptible CMake version 3.29.1
Pipeline
#70604
passed
11 months ago
Stage: .pre
Stage: test
Stage: code_quality
Stage: downstream
Pipeline: Dune Nightly Test
#70617
Pipeline: Dune Nightly Test
#70609
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
CMakeLists.txt
+5
-0
5 additions, 0 deletions
CMakeLists.txt
with
5 additions
and
0 deletions
CMakeLists.txt
+
5
−
0
View file @
c71fb236
...
...
@@ -4,6 +4,11 @@
cmake_minimum_required
(
VERSION 3.16
)
project
(
dune-common LANGUAGES C CXX
)
# CMake 3.29.1 is incompatible as it removed PACKAGE_PREFIX_DIR
if
(
CMAKE_VERSION VERSION_EQUAL 3.29.1
)
message
(
FATAL_ERROR
"CMake 3.29.1 is not compatible with Dune. Use a different CMake version."
)
endif
()
# make sure our own modules are found
list
(
APPEND CMAKE_MODULE_PATH
${
PROJECT_SOURCE_DIR
}
/cmake/modules
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment