mirror of
https://github.com/ITotalJustice/sphaira.git
synced 2025-10-31 19:16:05 +01:00
58 lines
1.4 KiB
JSON
58 lines
1.4 KiB
JSON
{
|
|
"version": 3,
|
|
"cmakeMinimumRequired": {
|
|
"major": 3,
|
|
"minor": 21,
|
|
"patch": 0
|
|
},
|
|
"configurePresets": [
|
|
{
|
|
"name": "core",
|
|
"displayName": "core",
|
|
"hidden": true,
|
|
"binaryDir": "${sourceDir}/build/${presetName}"
|
|
},
|
|
{
|
|
"name": "Release",
|
|
"displayName": "Release",
|
|
"inherits":["core"],
|
|
"cacheVariables": {
|
|
"CMAKE_BUILD_TYPE": "MinSizeRel",
|
|
"ENABLE_NETWORK_INSTALL": false
|
|
}
|
|
},
|
|
{
|
|
"name": "ReleaseWithInstall",
|
|
"displayName": "ReleaseWithInstall",
|
|
"inherits":["core"],
|
|
"cacheVariables": {
|
|
"CMAKE_BUILD_TYPE": "MinSizeRel",
|
|
"ENABLE_NETWORK_INSTALL": true
|
|
}
|
|
},
|
|
{
|
|
"name": "Debug",
|
|
"displayName": "Debug",
|
|
"inherits":["core"],
|
|
"cacheVariables": { "CMAKE_BUILD_TYPE":"Debug" }
|
|
}
|
|
],
|
|
"buildPresets": [
|
|
{
|
|
"name": "Release",
|
|
"configurePreset": "Release",
|
|
"jobs": 16
|
|
},
|
|
{
|
|
"name": "ReleaseWithInstall",
|
|
"configurePreset": "ReleaseWithInstall",
|
|
"jobs": 16
|
|
},
|
|
{
|
|
"name": "Debug",
|
|
"configurePreset": "Debug",
|
|
"jobs": 16
|
|
}
|
|
]
|
|
}
|