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
890 B
31 lines
890 B
{
|
|
"version": 3,
|
|
"configurePresets": [
|
|
{
|
|
"name": "GoodToolchainDefault",
|
|
"generator": "@RunCMake_GENERATOR@",
|
|
"binaryDir": "${sourceDir}/build/${presetName}",
|
|
"toolchainFile": "${sourceDir}/toolchain.cmake"
|
|
},
|
|
{
|
|
"name": "GoodToolchainInherit",
|
|
"inherits": "GoodToolchainDefault",
|
|
"cacheVariables": {
|
|
"CMAKE_TOOLCHAIN_FILE": {
|
|
"type": "FILEPATH",
|
|
"value": "${sourceDir}/toolchain_bad.cmake"
|
|
}
|
|
}
|
|
},
|
|
{
|
|
"name": "GoodToolchainOverride",
|
|
"inherits": "GoodToolchainInherit",
|
|
"toolchainFile": "override_toolchain.cmake"
|
|
},
|
|
{
|
|
"name": "GoodToolchainCommandLine",
|
|
"inherits": "GoodToolchainOverride"
|
|
}
|
|
]
|
|
}
|