1
0
mirror of https://gitlab.com/kelteseth/ScreenPlay.git synced 2024-10-06 09:17:07 +02:00

Remove unused presets

This commit is contained in:
Elias Steurer 2024-02-02 15:32:16 +01:00
parent f1607b0a0c
commit 7a59f7934d

View File

@ -116,17 +116,6 @@
"compile-commands-json"
]
},
{
"name": "ninja-multi-config",
"displayName": "Ninja Multi-Config",
"description": "Configure using Ninja Multi-Config generator",
"binaryDir": "${sourceDir}/../build_ScreenPlay",
"hidden": true,
"generator": "Ninja Multi-Config",
"inherits": [
"compile-commands-json"
]
},
{
"name": "host-windows",
"displayName": "Host OS - Windows",
@ -175,136 +164,5 @@
]
}
}
],
"buildPresets": [
{
"name": "debug",
"description": "configuration: debug",
"hidden": true,
"configurePreset": "default",
"configuration": "debug"
},
{
"name": "release",
"description": "configuration: release",
"hidden": true,
"configurePreset": "default",
"configuration": "release"
},
{
"name": "profile",
"description": "configuration: profile",
"hidden": true,
"configurePreset": "default",
"configuration": "profile"
},
{
"name": "install",
"description": "Builds the dependencies install(Ninja, Make, etc...) or INSTALL(Visual Studio, Xcode) target. Afterwards run the CMake install step to install the build dependencies",
"hidden": true,
"configurePreset": "default",
"inherits": [
"profile"
],
"targets": "install"
},
{
"name": "test-default",
"description": "Builds the smoke and main test suite dependencies",
"hidden": true,
"configurePreset": "default",
"inherits": [
"profile"
],
"targets": [
"TEST_SUITE_main",
"TEST_SUITE_smoke"
]
}
],
"testPresets": [
{
"name": "test-default",
"description": "CTest preset which runs the smoke and main test suites",
"hidden": true,
"configurePreset": "default",
"output": {
"outputOnFailure": true,
"outputLogFile": "Ctest-${presetName}.log"
},
"execution": {
"noTestsAction": "error"
},
"filter": {
"include": {
"label": "(SUITE_smoke|SUITE_main)"
},
"exclude": {
"label": "(REQUIRES_gpu)"
}
}
},
{
"name": "test-default-debug",
"description": "Runs the smoke and main test suites using the debug configuration",
"hidden": true,
"configurePreset": "default",
"inherits": [
"test-default"
],
"configuration": "debug",
"output": {
"outputLogFile": "Ctest-${presetName}-debug.log"
}
},
{
"name": "test-default-profile",
"description": "Runs the smoke and main test suites using the profile configuration",
"hidden": true,
"configurePreset": "default",
"inherits": [
"test-default"
],
"configuration": "profile",
"output": {
"outputLogFile": "Ctest-${presetName}-profile.log"
}
},
{
"name": "host-windows",
"displayName": "Host OS - Windows",
"description": "Specifies Windows host condition for test preset",
"hidden": true,
"configurePreset": "default",
"condition": {
"type": "equals",
"lhs": "${hostSystemName}",
"rhs": "Windows"
}
},
{
"name": "host-linux",
"displayName": "Host OS - Linux",
"description": "Specifies Linux host condition for test preset",
"hidden": true,
"configurePreset": "default",
"condition": {
"type": "equals",
"lhs": "${hostSystemName}",
"rhs": "Linux"
}
},
{
"name": "host-mac",
"displayName": "Host OS - Mac",
"description": "Specifies Mac host condition for test preset",
"hidden": true,
"configurePreset": "default",
"condition": {
"type": "equals",
"lhs": "${hostSystemName}",
"rhs": "Darwin"
}
}
]
}