mirror of
https://github.com/ITotalJustice/sphaira.git
synced 2025-11-02 01:16:03 +01:00
63 lines
1.6 KiB
JSON
63 lines
1.6 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": "Release" }
|
|
},
|
|
{
|
|
"name": "RelWithDebInfo",
|
|
"displayName": "RelWithDebInfo",
|
|
"inherits":["core"],
|
|
"cacheVariables": { "CMAKE_BUILD_TYPE":"RelWithDebInfo" }
|
|
},
|
|
{
|
|
"name": "MinSizeRel",
|
|
"displayName": "MinSizeRel",
|
|
"inherits":["core"],
|
|
"cacheVariables": { "CMAKE_BUILD_TYPE":"MinSizeRel" }
|
|
},
|
|
{
|
|
"name": "Debug",
|
|
"displayName": "Debug",
|
|
"inherits":["core"],
|
|
"cacheVariables": { "CMAKE_BUILD_TYPE":"Debug" }
|
|
}
|
|
],
|
|
"buildPresets": [
|
|
{
|
|
"name": "Release",
|
|
"configurePreset": "Release",
|
|
"jobs": 16
|
|
},
|
|
{
|
|
"name": "RelWithDebInfo",
|
|
"configurePreset": "RelWithDebInfo",
|
|
"jobs": 16
|
|
},
|
|
{
|
|
"name": "MinSizeRel",
|
|
"configurePreset": "MinSizeRel",
|
|
"jobs": 16
|
|
},
|
|
{
|
|
"name": "Debug",
|
|
"configurePreset": "Debug",
|
|
"jobs": 16
|
|
}
|
|
]
|
|
}
|