2024-04-17 02:08:08 +00:00
|
|
|
{
|
2024-04-20 06:47:09 +00:00
|
|
|
"version": 3,
|
|
|
|
"configurePresets": [
|
|
|
|
{
|
|
|
|
"name": "defaults",
|
|
|
|
"hidden": true,
|
|
|
|
"binaryDir": "${sourceDir}/builds/${presetName}"
|
|
|
|
},
|
|
|
|
{
|
2024-06-23 12:02:26 +00:00
|
|
|
"name": "win",
|
2024-05-22 12:20:14 +00:00
|
|
|
"inherits": "defaults",
|
2024-06-05 17:37:00 +00:00
|
|
|
"generator": "Ninja Multi-Config",
|
2024-05-22 12:20:14 +00:00
|
|
|
"condition": {
|
|
|
|
"type": "equals",
|
|
|
|
"lhs": "${hostSystemName}",
|
|
|
|
"rhs": "Windows"
|
|
|
|
},
|
2024-06-05 17:37:00 +00:00
|
|
|
"cacheVariables": {
|
2024-06-09 14:57:05 +00:00
|
|
|
"VCPKG_TARGET_TRIPLET": "x64-windows-static-md"
|
2024-06-05 17:37:00 +00:00
|
|
|
},
|
|
|
|
"architecture": {
|
|
|
|
"strategy": "external",
|
|
|
|
"value": "x64"
|
2024-06-26 04:06:02 +00:00
|
|
|
}
|
2024-05-22 12:20:14 +00:00
|
|
|
},
|
2024-04-20 06:47:09 +00:00
|
|
|
{
|
|
|
|
"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"
|
|
|
|
}
|
2024-10-27 19:47:11 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "linux-cross-arm64",
|
|
|
|
"inherits": "defaults",
|
|
|
|
"generator": "Ninja Multi-Config",
|
|
|
|
"condition": {
|
|
|
|
"type": "equals",
|
|
|
|
"lhs": "${hostSystemName}",
|
|
|
|
"rhs": "Linux"
|
|
|
|
},
|
|
|
|
"cacheVariables": {
|
|
|
|
"VCPKG_TARGET_TRIPLET": "arm64-linux",
|
|
|
|
"CMAKE_TOOLCHAIN_FILE": "${sourceDir}/cmake/toolchains/linux-aarch64-gcc-toolchain.cmake"
|
|
|
|
}
|
2024-04-20 06:47:09 +00:00
|
|
|
}
|
|
|
|
],
|
|
|
|
"buildPresets": [
|
|
|
|
{
|
2024-06-23 12:02:26 +00:00
|
|
|
"name": "win",
|
|
|
|
"configurePreset": "win"
|
2024-04-20 06:47:09 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "mac",
|
|
|
|
"configurePreset": "mac"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "linux",
|
|
|
|
"configurePreset": "linux"
|
2024-10-27 19:47:11 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "linux-cross-arm64",
|
|
|
|
"configurePreset": "linux-cross-arm64"
|
2024-04-20 06:47:09 +00:00
|
|
|
}
|
2024-04-24 12:14:59 +00:00
|
|
|
],
|
|
|
|
"testPresets": [
|
|
|
|
{
|
|
|
|
"name": "defaults",
|
|
|
|
"hidden": true,
|
|
|
|
"output": {
|
|
|
|
"outputOnFailure": true
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
2024-06-23 12:02:26 +00:00
|
|
|
"name": "win",
|
2024-04-24 12:14:59 +00:00
|
|
|
"inherits": "defaults",
|
2024-05-22 12:20:14 +00:00
|
|
|
"description": "Testing under Windows x64",
|
2024-06-23 12:02:26 +00:00
|
|
|
"configurePreset": "win"
|
2024-04-24 12:14:59 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "mac",
|
|
|
|
"inherits": "defaults",
|
|
|
|
"description": "Testing under macOS",
|
|
|
|
"configurePreset": "mac"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "linux",
|
|
|
|
"inherits": "defaults",
|
|
|
|
"description": "Testing under Linux",
|
|
|
|
"configurePreset": "linux"
|
|
|
|
}
|
2024-04-20 06:47:09 +00:00
|
|
|
]
|
2024-10-27 19:47:11 +00:00
|
|
|
}
|