mirror of
https://github.com/kevinbentley/Descent3.git
synced 2025-01-22 11:28:56 +00:00
c9cc616786
Specifically Ninja Multi-Config (it's fast) Fixes CI not actually building multiple configs, as well as artifacts not found in expected locations
29 lines
696 B
JSON
29 lines
696 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"
|
|
}
|
|
}
|
|
]
|
|
}
|