66 lines
1.4 KiB
JSON
66 lines
1.4 KiB
JSON
{
|
|
"version": 6,
|
|
"cmakeMinimumRequired": {
|
|
"major": 3,
|
|
"minor": 25,
|
|
"patch": 0
|
|
},
|
|
"configurePresets": [
|
|
{
|
|
"name": "macos-debug",
|
|
"displayName": "macOS Debug",
|
|
"generator": "Ninja",
|
|
"binaryDir": "${sourceDir}/build/macos-debug",
|
|
"cacheVariables": {
|
|
"CMAKE_BUILD_TYPE": "Debug",
|
|
"DTS_BUILD_TESTS": "ON"
|
|
},
|
|
"condition": {
|
|
"type": "equals",
|
|
"lhs": "${hostSystemName}",
|
|
"rhs": "Darwin"
|
|
}
|
|
},
|
|
{
|
|
"name": "windows-msvc-debug",
|
|
"displayName": "Windows MSVC Debug",
|
|
"generator": "Visual Studio 17 2022",
|
|
"architecture": "x64",
|
|
"binaryDir": "${sourceDir}/build/windows-msvc-debug",
|
|
"cacheVariables": {
|
|
"DTS_BUILD_TESTS": "ON"
|
|
},
|
|
"condition": {
|
|
"type": "equals",
|
|
"lhs": "${hostSystemName}",
|
|
"rhs": "Windows"
|
|
}
|
|
}
|
|
],
|
|
"buildPresets": [
|
|
{
|
|
"name": "macos-debug",
|
|
"configurePreset": "macos-debug"
|
|
},
|
|
{
|
|
"name": "windows-msvc-debug",
|
|
"configurePreset": "windows-msvc-debug",
|
|
"configuration": "Debug"
|
|
}
|
|
],
|
|
"testPresets": [
|
|
{
|
|
"name": "macos-debug",
|
|
"configurePreset": "macos-debug",
|
|
"output": { "outputOnFailure": true }
|
|
},
|
|
{
|
|
"name": "windows-msvc-debug",
|
|
"configurePreset": "windows-msvc-debug",
|
|
"configuration": "Debug",
|
|
"output": { "outputOnFailure": true }
|
|
}
|
|
]
|
|
}
|
|
|