mirror of
https://github.com/uroni/hs5.git
synced 2025-10-26 11:17:18 +00:00
78 lines
2.4 KiB
JSON
78 lines
2.4 KiB
JSON
{
|
|
"version": 3,
|
|
"cmakeMinimumRequired": {
|
|
"major": 3,
|
|
"minor": 21,
|
|
"patch": 0
|
|
},
|
|
"configurePresets": [
|
|
{
|
|
"name": "ninja-multi-vcpkg",
|
|
"displayName": "Ninja Multi-Config",
|
|
"description": "Configure with vcpkg toolchain and generate Ninja project files for all configurations",
|
|
"binaryDir": "${sourceDir}/builds/${presetName}",
|
|
"generator": "Ninja Multi-Config",
|
|
"cacheVariables": {
|
|
"CMAKE_TOOLCHAIN_FILE": {
|
|
"type": "FILEPATH",
|
|
"value": "${sourceDir}/vcpkg/scripts/buildsystems/vcpkg.cmake"
|
|
}
|
|
}
|
|
}
|
|
],
|
|
"buildPresets": [
|
|
{
|
|
"name": "ninja-vcpkg-debug",
|
|
"configurePreset": "ninja-multi-vcpkg",
|
|
"displayName": "Build (Debug)",
|
|
"description": "Build with Ninja/vcpkg (Debug)",
|
|
"configuration": "Debug"
|
|
},
|
|
{
|
|
"name": "ninja-vcpkg-release",
|
|
"configurePreset": "ninja-multi-vcpkg",
|
|
"displayName": "Build (Release)",
|
|
"description": "Build with Ninja/vcpkg (Release)",
|
|
"configuration": "Release"
|
|
},
|
|
{
|
|
"name": "ninja-vcpkg-release-with-debug-info",
|
|
"configurePreset": "ninja-multi-vcpkg",
|
|
"displayName": "Build (Release)",
|
|
"description": "Build with Ninja/vcpkg (Release with debug info)",
|
|
"configuration": "RelWithDebInfo"
|
|
},
|
|
{
|
|
"name": "ninja-vcpkg",
|
|
"configurePreset": "ninja-multi-vcpkg",
|
|
"displayName": "Build",
|
|
"description": "Build with Ninja/vcpkg"
|
|
}
|
|
],
|
|
"testPresets": [
|
|
{
|
|
"name": "test-ninja-vcpkg",
|
|
"configurePreset": "ninja-multi-vcpkg",
|
|
"hidden": true
|
|
},
|
|
{
|
|
"name": "test-debug",
|
|
"description": "Test (Debug)",
|
|
"displayName": "Test (Debug)",
|
|
"configuration": "Debug",
|
|
"inherits": [
|
|
"test-ninja-vcpkg"
|
|
]
|
|
},
|
|
{
|
|
"name": "test-release",
|
|
"description": "Test (Release)",
|
|
"displayName": "Test (Release)",
|
|
"configuration": "Release",
|
|
"inherits": [
|
|
"test-ninja-vcpkg"
|
|
]
|
|
}
|
|
]
|
|
}
|