diff options
author | Sérgio Martins <sergio.martins@kdab.com> | 2021-07-10 14:21:59 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2021-07-12 12:54:04 (GMT) |
commit | 2114d717a0aa76684f5d95e60453175a5ba22059 (patch) | |
tree | 47de6a30b1892e71edda90764b197321d71a4912 /Help/manual/presets | |
parent | ac984cb5f75349fd5ed00cc52fbb5154b7bb1527 (diff) | |
download | CMake-2114d717a0aa76684f5d95e60453175a5ba22059.zip CMake-2114d717a0aa76684f5d95e60453175a5ba22059.tar.gz CMake-2114d717a0aa76684f5d95e60453175a5ba22059.tar.bz2 |
Help: Fix preset example cmakeMinimumRequired
Since commit 8bc5c8961e (CMakePresets.json: Add the ability to
conditionally disable presets, 2021-03-10, v3.21.0-rc1~464^2)
the example requires presets version 3 support, which is not
available until CMake 3.21. CMake 3.20.0 can't open v3 presets.
Make cmakeMinimumRequired compatible with the example's version.
Diffstat (limited to 'Help/manual/presets')
-rw-r--r-- | Help/manual/presets/example.json | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Help/manual/presets/example.json b/Help/manual/presets/example.json index 346f342..b08445a 100644 --- a/Help/manual/presets/example.json +++ b/Help/manual/presets/example.json @@ -2,7 +2,7 @@ "version": 3, "cmakeMinimumRequired": { "major": 3, - "minor": 20, + "minor": 21, "patch": 0 }, "configurePresets": [ |