mirror of
https://github.com/kevinbentley/Descent3.git
synced 2025-01-22 19:55:23 +00:00
56 lines
938 B
JSON
56 lines
938 B
JSON
{
|
|
"version": 3,
|
|
"configurePresets": [
|
|
{
|
|
"name": "defaults",
|
|
"hidden": true,
|
|
"binaryDir": "${sourceDir}/builds/${presetName}"
|
|
},
|
|
{
|
|
"name": "win",
|
|
"inherits": "defaults",
|
|
"generator": "Visual Studio 17 2022",
|
|
"condition": {
|
|
"type": "equals",
|
|
"lhs": "${hostSystemName}",
|
|
"rhs": "Windows"
|
|
},
|
|
"architecture": "Win32"
|
|
},
|
|
{
|
|
"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"
|
|
}
|
|
}
|
|
],
|
|
"buildPresets": [
|
|
{
|
|
"name": "win",
|
|
"configurePreset": "win"
|
|
},
|
|
{
|
|
"name": "mac",
|
|
"configurePreset": "mac"
|
|
},
|
|
{
|
|
"name": "linux",
|
|
"configurePreset": "linux"
|
|
}
|
|
]
|
|
}
|