Descent3/CMakePresets.json
Jeod 2d4d82d469
Accurately find the linux artifacts (#80)
use ninja for Linux builds, fixes missing Linux artifacts on CI
2024-04-19 12:13:19 +01:00

38 lines
948 B
JSON

{
"version": 3
, "configurePresets": [
{
"name": "win"
, "condition": {
"type": "equals"
, "lhs": "${hostSystemName}"
, "rhs": "Windows"
}
, "cacheVariables": {
"CMAKE_GENERATOR_PLATFORM": {
"type": "STRING"
, "value": "Win32"
}
}
}
, {
"name": "mac"
, "generator": "Ninja Multi-Config"
, "condition": {
"type": "equals"
, "lhs": "${hostSystemName}"
, "rhs": "Darwin"
}
}
, {
"name": "linux"
, "generator": "Ninja Multi-Config"
, "condition": {
"type": "equals"
, "lhs": "${hostSystemName}"
, "rhs": "Linux"
}
}
]
}