I have a project with a hierarchy of CMakePresets.json files:
- root
- CMakePresets.json
- child1
- CMakePresets.json
- child2
- CMakePresets.json
The contents are roughly
root/CMakePresets.json
{
"cmakeMinimumRequired": {
"major": 3,
"minor": 26,
"patch": 4
},
"version": 6,
"configurePresets": [
{
"name": "cc-ninja",
"displayName": "Ninja Debug",
"generator": "Ninja",
"binaryDir": "build/ninja-debug-mingw",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Debug"
},
"warnings": {
"dev": true,
"deprecated": true
},
"debug": {
"output": true
},
"vendor": {
"jetbrains.com/clion": {
"toolchain": "MinGW"
}
}
}
],
"include": [
"./child1/CMakePresets.json"
],
"buildPresets": [
{
"name": "base",
"hidden": true,
"configurePreset": "cc-ninja",
"configuration": "Debug"
},
{
"name": "cb-cmake",
"inherits": "base",
"inheritConfigureEnvironment": false,
"targets": []
}
],
"workflowPresets": [
{
"name": "cw-general-stub",
"steps": [
{
"type": "configure",
"name": "cc-ninja"
},
{
"type": "build",
"name": "cb-cmake"
}
]
}
]
}
root/child1/CMakePresets.json
{
"version": 6,
"include": [
"./child2/CMakePresets.json"
]
}
root/child1/child2/CMakePresets.json
{
"version": 6,
"buildPresets": [
{
"name": "cb-G-iface-algorithm",
"configurePreset": "cc-ninja",
"configuration": "Debug",
"inheritConfigureEnvironment": false,
"targets": [ ]
}
]
}
I get the following error:
> C:\Users\feisele\Desktop\CMake\build\vs\bin\Debug\cmake.exe --workflow --preset cw-general-stub
CMake Error: Could not read presets from C:/Users/feisele/Desktop/cts-3.x:
Configure preset "cb-G-iface-algorithm" is unreachable from preset's file
(I presume the error message is a bit off?)
Is “cb-G-iface-algorithm” not able to discover “cc-ninja”?
If so, why not?
How can I fix it?