mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-08 17:28:20 +00:00
d78b50874c
* upgrade MacOS build settings for better C++20 compatibility * add fixes I forgot * 3rd try * Update UserManager.cpp * Update CMakeLists.txt * End with newline * Update CMakeLists.txt * update to reflect feedback * Update CMakeLists.txt to disable deprecation warnings on SHA512 * attempt to disable sqlite warnings * revert last attempt (didn't work) * disable sqlite deprecation warnings on MacOS
129 lines
3.4 KiB
JSON
129 lines
3.4 KiB
JSON
{
|
|
"version": 3,
|
|
"cmakeMinimumRequired": {
|
|
"major": 3,
|
|
"minor": 14,
|
|
"patch": 0
|
|
},
|
|
"configurePresets": [
|
|
{
|
|
"name": "default",
|
|
"displayName": "Default configure step",
|
|
"description": "Use 'build' dir and Unix makefiles",
|
|
"binaryDir": "${sourceDir}/build",
|
|
"generator": "Unix Makefiles"
|
|
},
|
|
{
|
|
"name": "ci-ubuntu-22.04",
|
|
"displayName": "CI configure step for Ubuntu",
|
|
"description": "Same as default, Used in GitHub actions workflow",
|
|
"inherits": "default"
|
|
},
|
|
{
|
|
"name": "ci-macos-13",
|
|
"displayName": "CI configure step for MacOS",
|
|
"description": "Same as default, Used in GitHub actions workflow",
|
|
"inherits": "default"
|
|
},
|
|
{
|
|
"name": "ci-windows-2022",
|
|
"displayName": "CI configure step for Windows",
|
|
"description": "Set architecture to 64-bit (b/c RakNet)",
|
|
"inherits": "default",
|
|
"generator": "Visual Studio 17 2022",
|
|
"architecture": {
|
|
"value": "x64"
|
|
},
|
|
"cacheVariables": {
|
|
"CMAKE_BUILD_TYPE": "RelWithDebInfo"
|
|
}
|
|
},
|
|
{
|
|
"name": "windows-default",
|
|
"inherits": "ci-windows-2022",
|
|
"displayName": "Windows only Configure Settings",
|
|
"description": "Sets build and install directories",
|
|
"generator": "Ninja",
|
|
"architecture": {
|
|
"value": "x64",
|
|
"strategy": "external"
|
|
}
|
|
}
|
|
],
|
|
"buildPresets": [
|
|
{
|
|
"name": "default",
|
|
"configurePreset": "default",
|
|
"displayName": "Default Build",
|
|
"description": "Default Build",
|
|
"jobs": 2
|
|
},
|
|
{
|
|
"name": "ci-windows-2022",
|
|
"configurePreset": "ci-windows-2022",
|
|
"displayName": "Windows CI Build",
|
|
"description": "This preset is used by the CI build on windows",
|
|
"configuration": "RelWithDebInfo",
|
|
"jobs": 2
|
|
},
|
|
{
|
|
"name": "ci-ubuntu-22.04",
|
|
"configurePreset": "ci-ubuntu-22.04",
|
|
"displayName": "Linux CI Build",
|
|
"description": "This preset is used by the CI build on linux",
|
|
"jobs": 2
|
|
},
|
|
{
|
|
"name": "ci-macos-13",
|
|
"configurePreset": "ci-macos-13",
|
|
"displayName": "MacOS CI Build",
|
|
"description": "This preset is used by the CI build on MacOS",
|
|
"jobs": 2
|
|
}
|
|
],
|
|
"testPresets": [
|
|
{
|
|
"name": "ci-ubuntu-22.04",
|
|
"configurePreset": "ci-ubuntu-22.04",
|
|
"displayName": "CI Tests on Linux",
|
|
"description": "Runs all tests on a linux configuration",
|
|
"execution": {
|
|
"jobs": 2
|
|
},
|
|
"output": {
|
|
"outputOnFailure": true
|
|
}
|
|
},
|
|
{
|
|
"name": "ci-macos-13",
|
|
"configurePreset": "ci-macos-13",
|
|
"displayName": "CI Tests on MacOS",
|
|
"description": "Runs all tests on a Mac configuration",
|
|
"execution": {
|
|
"jobs": 2
|
|
},
|
|
"output": {
|
|
"outputOnFailure": true
|
|
}
|
|
},
|
|
{
|
|
"name": "ci-windows-2022",
|
|
"configurePreset": "ci-windows-2022",
|
|
"displayName": "CI Tests on windows",
|
|
"description": "Runs all tests on a windows configuration",
|
|
"configuration": "RelWithDebInfo",
|
|
"execution": {
|
|
"jobs": 2
|
|
},
|
|
"output": {
|
|
"outputOnFailure": true
|
|
},
|
|
"filter": {
|
|
"exclude": {
|
|
"name": "((example)|(minigzip))+"
|
|
}
|
|
}
|
|
}
|
|
]
|
|
}
|