Skip to content
Snippets Groups Projects
Commit 3d918720 authored by James R.'s avatar James R.
Browse files

CMakePresets.json: add testers and host-testers presets

parent b2bd5ecc
No related branches found
No related tags found
No related merge requests found
......@@ -10,6 +10,8 @@
"CMAKE_C_FLAGS": "-fdiagnostics-color",
"CMAKE_CXX_FLAGS": "-fdiagnostics-color",
"SRB2_CONFIG_DEV_BUILD": "ON",
"SRB2_CONFIG_HOSTTESTERS": "OFF",
"SRB2_CONFIG_TESTERS": "OFF",
"CMAKE_BUILD_TYPE": "RelWithDebInfo"
}
},
......@@ -20,6 +22,22 @@
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Debug"
}
},
{
"name": "testers",
"description": "Build for testers to use",
"inherits": "default",
"cacheVariables": {
"SRB2_CONFIG_TESTERS": "ON"
}
},
{
"name": "host-testers",
"description": "Build to use when hosting, to let testers join",
"inherits": "default",
"cacheVariables": {
"SRB2_CONFIG_HOSTTESTERS": "ON"
}
}
],
"buildPresets": [
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment