aocpp/CMakePresets.json

18 lines
567 B
JSON
Raw Normal View History

2022-11-12 19:44:11 -08:00
{
"version": 2,
"configurePresets": [
{
"name": "preset",
"displayName": "Configure preset using toolchain file",
"description": "Sets Ninja generator, build and install directory",
"generator": "Ninja",
"binaryDir": "${sourceDir}/out/build/${presetName}",
"cacheVariables": {
2022-11-18 21:09:04 -08:00
"CMAKE_BUILD_TYPE": "Debug",
2022-11-12 19:44:11 -08:00
"CMAKE_TOOLCHAIN_FILE": "",
"CMAKE_INSTALL_PREFIX": "${sourceDir}/out/install/${presetName}"
}
}
]
}