You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
871 B

{
"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"
}
]
}