mirror of
https://github.com/kevinbentley/Descent3.git
synced 2025-01-22 19:55:23 +00:00
2d4d82d469
use ninja for Linux builds, fixes missing Linux artifacts on CI
38 lines
948 B
JSON
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"
|
|
}
|
|
}
|
|
]
|
|
}
|