mirror of
https://github.com/wolfpld/tracy.git
synced 2026-07-23 14:39:14 +00:00
32 lines
673 B
JSON
32 lines
673 B
JSON
{
|
|
"version": 10,
|
|
"configurePresets": [
|
|
{
|
|
"name": "common",
|
|
"hidden": true,
|
|
"binaryDir": "${sourceDir}/build-${presetName}",
|
|
"generator": "Ninja",
|
|
"cacheVariables": {
|
|
"CMAKE_EXPORT_COMPILE_COMMANDS": "ON"
|
|
}
|
|
},
|
|
{
|
|
"name": "debug",
|
|
"displayName": "Debug configuration",
|
|
"inherits": "common",
|
|
"binaryDir": "${sourceDir}/build",
|
|
"cacheVariables": {
|
|
"CMAKE_BUILD_TYPE": "Debug"
|
|
}
|
|
},
|
|
{
|
|
"name": "release",
|
|
"displayName": "Release configuration",
|
|
"inherits": "common",
|
|
"cacheVariables": {
|
|
"CMAKE_BUILD_TYPE": "Release"
|
|
}
|
|
}
|
|
]
|
|
}
|