mirror of
https://github.com/kevinbentley/Descent3.git
synced 2025-01-22 11:28:56 +00:00
118 lines
2.2 KiB
JSON
118 lines
2.2 KiB
JSON
{
|
|
"version": 3,
|
|
"configurePresets": [
|
|
{
|
|
"name": "defaults",
|
|
"hidden": true,
|
|
"binaryDir": "${sourceDir}/builds/${presetName}"
|
|
},
|
|
{
|
|
"name": "win32",
|
|
"inherits": "defaults",
|
|
"generator": "Ninja Multi-Config",
|
|
"condition": {
|
|
"type": "equals",
|
|
"lhs": "${hostSystemName}",
|
|
"rhs": "Windows"
|
|
},
|
|
"architecture": {
|
|
"strategy": "external",
|
|
"value": "x86"
|
|
},
|
|
"cacheVariables": {
|
|
"VCPKG_TARGET_TRIPLET": "x86-windows-static-md"
|
|
},
|
|
"toolchainFile": "$env{VCPKG_ROOT}/scripts/buildsystems/vcpkg.cmake"
|
|
},
|
|
{
|
|
"name": "win64",
|
|
"inherits": "defaults",
|
|
"generator": "Ninja Multi-Config",
|
|
"condition": {
|
|
"type": "equals",
|
|
"lhs": "${hostSystemName}",
|
|
"rhs": "Windows"
|
|
},
|
|
"cacheVariables": {
|
|
"VCPKG_TARGET_TRIPLET": "x64-windows-static-md"
|
|
},
|
|
"architecture": {
|
|
"strategy": "external",
|
|
"value": "x64"
|
|
},
|
|
"toolchainFile": "$env{VCPKG_ROOT}/scripts/buildsystems/vcpkg.cmake"
|
|
},
|
|
{
|
|
"name": "mac",
|
|
"inherits": "defaults",
|
|
"generator": "Ninja Multi-Config",
|
|
"condition": {
|
|
"type": "equals",
|
|
"lhs": "${hostSystemName}",
|
|
"rhs": "Darwin"
|
|
}
|
|
},
|
|
{
|
|
"name": "linux",
|
|
"inherits": "defaults",
|
|
"generator": "Ninja Multi-Config",
|
|
"condition": {
|
|
"type": "equals",
|
|
"lhs": "${hostSystemName}",
|
|
"rhs": "Linux"
|
|
}
|
|
}
|
|
],
|
|
"buildPresets": [
|
|
{
|
|
"name": "win32",
|
|
"configurePreset": "win32"
|
|
},
|
|
{
|
|
"name": "win64",
|
|
"configurePreset": "win64"
|
|
},
|
|
{
|
|
"name": "mac",
|
|
"configurePreset": "mac"
|
|
},
|
|
{
|
|
"name": "linux",
|
|
"configurePreset": "linux"
|
|
}
|
|
],
|
|
"testPresets": [
|
|
{
|
|
"name": "defaults",
|
|
"hidden": true,
|
|
"output": {
|
|
"outputOnFailure": true
|
|
}
|
|
},
|
|
{
|
|
"name": "win32",
|
|
"inherits": "defaults",
|
|
"description": "Testing under Windows x86",
|
|
"configurePreset": "win32"
|
|
},
|
|
{
|
|
"name": "win64",
|
|
"inherits": "defaults",
|
|
"description": "Testing under Windows x64",
|
|
"configurePreset": "win64"
|
|
},
|
|
{
|
|
"name": "mac",
|
|
"inherits": "defaults",
|
|
"description": "Testing under macOS",
|
|
"configurePreset": "mac"
|
|
},
|
|
{
|
|
"name": "linux",
|
|
"inherits": "defaults",
|
|
"description": "Testing under Linux",
|
|
"configurePreset": "linux"
|
|
}
|
|
]
|
|
}
|