mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2024-11-15 01:01:33 +00:00
30 lines
572 B
JSON
30 lines
572 B
JSON
|
{
|
||
|
"version": 3,
|
||
|
"configurePresets": [
|
||
|
{
|
||
|
"name": "default",
|
||
|
"description": "Build using default generator",
|
||
|
"binaryDir": "build",
|
||
|
"cacheVariables": {
|
||
|
"CMAKE_C_FLAGS": "-fdiagnostics-color",
|
||
|
"CMAKE_CXX_FLAGS": "-fdiagnostics-color",
|
||
|
"CMAKE_BUILD_TYPE": "RelWithDebInfo"
|
||
|
}
|
||
|
},
|
||
|
{
|
||
|
"name": "debug",
|
||
|
"description": "Build for development (no optimizations)",
|
||
|
"inherits": "default",
|
||
|
"cacheVariables": {
|
||
|
"CMAKE_BUILD_TYPE": "Debug"
|
||
|
}
|
||
|
}
|
||
|
],
|
||
|
"buildPresets": [
|
||
|
{
|
||
|
"name": "default",
|
||
|
"configurePreset": "default"
|
||
|
}
|
||
|
]
|
||
|
}
|