mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-12-22 13:33:35 +00:00
125 lines
2.9 KiB
JSON
125 lines
2.9 KiB
JSON
{
|
|
"version": 6,
|
|
"cmakeMinimumRequired": {
|
|
"major": 3,
|
|
"minor": 25,
|
|
"patch": 0
|
|
},
|
|
"configurePresets": [
|
|
{
|
|
"name": "default",
|
|
"displayName": "Default configure step",
|
|
"description": "Use 'build' dir and Unix makefiles",
|
|
"binaryDir": "${sourceDir}/build",
|
|
"generator": "Unix Makefiles",
|
|
"hidden": true
|
|
},
|
|
{
|
|
"name": "windows-default",
|
|
"inherits": "default",
|
|
"displayName": "Windows Default Configure Settings",
|
|
"description": "Sets build and install directories",
|
|
"generator": "Visual Studio 17 2022",
|
|
"condition": {
|
|
"type": "equals",
|
|
"lhs": "${hostSystemName}",
|
|
"rhs": "Windows"
|
|
},
|
|
"hidden": true
|
|
},
|
|
{
|
|
"name": "windows-msvc",
|
|
"inherits": "windows-default",
|
|
"displayName": "Windows (MSVC)",
|
|
"description": "Create a build using MSVC"
|
|
},
|
|
{
|
|
"name": "windows-clang",
|
|
"inherits": "windows-default",
|
|
"displayName": "EXPERIMENTAL - Windows (Clang)",
|
|
"description": "Create a build using Clang",
|
|
"toolset": "ClangCL"
|
|
},
|
|
{
|
|
"name": "linux-default",
|
|
"inherits": "default",
|
|
"hidden": true,
|
|
"condition": {
|
|
"type": "equals",
|
|
"lhs": "${hostSystemName}",
|
|
"rhs": "Linux"
|
|
}
|
|
},
|
|
{
|
|
"name": "linux-clang",
|
|
"inherits": "linux-default",
|
|
"toolchainFile": "${sourceDir}/cmake/toolchains/linux-clang.cmake",
|
|
"displayName": "Linux (Clang)",
|
|
"description": "Create a build using the Clang toolchain for Linux"
|
|
},
|
|
{
|
|
"name": "linux-gnu",
|
|
"inherits": "linux-default",
|
|
"toolchainFile": "${sourceDir}/cmake/toolchains/linux-gnu.cmake",
|
|
"displayName": "Linux (GNU)",
|
|
"description": "Create a build using the GNU toolchain for Linux"
|
|
},
|
|
{
|
|
"name": "macos",
|
|
"inherits": "default",
|
|
"displayName": "MacOS",
|
|
"description": "Create a build for MacOS",
|
|
"condition": {
|
|
"type": "equals",
|
|
"lhs": "${hostSystemName}",
|
|
"rhs": "Darwin"
|
|
}
|
|
}
|
|
],
|
|
"buildPresets": [
|
|
{ "name": "ci-ubuntu-22.04", "configurePreset": "linux-gnu" },
|
|
{ "name": "ci-macos-13", "configurePreset": "macos" },
|
|
{ "name": "ci-windows-2022", "configurePreset": "windows-msvc" }
|
|
],
|
|
"testPresets": [
|
|
{
|
|
"name": "default",
|
|
"hidden": true,
|
|
"execution": {
|
|
"jobs": 2
|
|
},
|
|
"output": {
|
|
"outputOnFailure": true
|
|
}
|
|
},
|
|
{
|
|
"name": "ci-ubuntu-22.04",
|
|
"configurePreset": "linux-gnu",
|
|
"displayName": "CI Tests on Linux",
|
|
"inherits": "default"
|
|
},
|
|
{
|
|
"name": "ci-macos-13",
|
|
"configurePreset": "macos",
|
|
"displayName": "CI Tests on MacOS",
|
|
"inherits": "default"
|
|
},
|
|
{
|
|
"name": "ci-windows-2022",
|
|
"configurePreset": "windows-msvc",
|
|
"displayName": "CI Tests on windows",
|
|
"inherits": "default",
|
|
|
|
"configuration": "RelWithDebInfo",
|
|
"filter": {
|
|
"exclude": {
|
|
"name": "((example)|(minigzip))+"
|
|
}
|
|
}
|
|
}
|
|
],
|
|
"workflowPresets": [
|
|
|
|
]
|
|
}
|