Descent3/CMakePresets.json
Dan Raviv c9cc616786 Use a multi-config generator in the CMake macos preset
Specifically Ninja Multi-Config (it's fast)

Fixes CI not actually building multiple configs, as well as artifacts not found in expected locations
2024-04-17 16:20:47 -07:00

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"
}
}
]
}