28 lines
502 B
JSON
28 lines
502 B
JSON
{
|
|
"version": 10,
|
|
"cmakeMinimumRequired": {
|
|
"major": 4,
|
|
"minor": 0,
|
|
"patch": 0
|
|
},
|
|
"configurePresets": [
|
|
{
|
|
"name": "debug",
|
|
"displayName": "Debug",
|
|
"binaryDir": "${sourceDir}/build-debug",
|
|
"generator": "Ninja",
|
|
"cacheVariables": {
|
|
"CMAKE_BUILD_TYPE": "Debug"
|
|
}
|
|
},
|
|
{
|
|
"name": "release",
|
|
"displayName": "Release",
|
|
"binaryDir": "${sourceDir}/build-release",
|
|
"generator": "Ninja",
|
|
"cacheVariables": {
|
|
"CMAKE_BUILD_TYPE": "RelWithDebInfo"
|
|
}
|
|
}
|
|
]
|
|
}
|