31 lines
871 B
JSON
31 lines
871 B
JSON
|
{
|
||
|
"version": 3,
|
||
|
"configurePresets": [
|
||
|
{
|
||
|
"name": "GoodInstallDefault",
|
||
|
"generator": "@RunCMake_GENERATOR@",
|
||
|
"binaryDir": "${sourceDir}/build/${presetName}",
|
||
|
"installDir": "${sourceDir}/build/install_dir1"
|
||
|
},
|
||
|
{
|
||
|
"name": "GoodInstallInherit",
|
||
|
"inherits": "GoodInstallDefault",
|
||
|
"cacheVariables": {
|
||
|
"CMAKE_INSTALL_PREFIX": {
|
||
|
"type": "PATH",
|
||
|
"value": "${sourceDir}/build/bad_path"
|
||
|
}
|
||
|
}
|
||
|
},
|
||
|
{
|
||
|
"name": "GoodInstallOverride",
|
||
|
"inherits": "GoodInstallInherit",
|
||
|
"installDir": "${sourceDir}/build/install_dir2"
|
||
|
},
|
||
|
{
|
||
|
"name": "GoodInstallCommandLine",
|
||
|
"inherits": "GoodInstallOverride"
|
||
|
}
|
||
|
]
|
||
|
}
|