CMake Presets #70
Unanswered
oceanofthelost
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
CMake Version 3.19 introduced the concept of presets, which provide a much simpler method for creating simplified build instructions.
for example, assuming presets are defined configuring the build by using
we would now use
For building, instead of having to
cd
to the build directory, from the project root we would issueIf we were require CMake 3.25 instead of 3.22, we would could support CMake workflows, which allow creating a reproducible configuration, build, test, package step all within CMake. Side effect of workflows is all CI workflows could be simplified to a commands such as
My question, is there any interest in adding support for CMake Presets?
Beta Was this translation helpful? Give feedback.
All reactions