Bug fixes
This commit is contained in:
21
.vscode/tasks.json
vendored
21
.vscode/tasks.json
vendored
@@ -43,6 +43,27 @@
|
|||||||
"problemMatcher": [],
|
"problemMatcher": [],
|
||||||
"detail": "Build Release with debug info"
|
"detail": "Build Release with debug info"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"label": "Configure: Release",
|
||||||
|
"type": "shell",
|
||||||
|
"command": "./scripts/build_script configure -b release",
|
||||||
|
"group": {
|
||||||
|
"isDefault": false
|
||||||
|
},
|
||||||
|
"problemMatcher": [],
|
||||||
|
"detail": "Configure Release"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"label": "Build: Release",
|
||||||
|
"type": "shell",
|
||||||
|
"command": "./scripts/build_script build -b release",
|
||||||
|
"group": {
|
||||||
|
"kind": "build",
|
||||||
|
"isDefault": true
|
||||||
|
},
|
||||||
|
"problemMatcher": [],
|
||||||
|
"detail": "Build Release"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"label": "Clean: Debug",
|
"label": "Clean: Debug",
|
||||||
"type": "shell",
|
"type": "shell",
|
||||||
|
|||||||
Binary file not shown.
@@ -48,7 +48,7 @@ void configureProject(const BuildType buildType, bool dryrun) {
|
|||||||
configureDir("build/release", "Release", dryrun);
|
configureDir("build/release", "Release", dryrun);
|
||||||
break;
|
break;
|
||||||
case relwithdeb:
|
case relwithdeb:
|
||||||
configureDir("build/RelWithDeb", "RelWithDeb", dryrun);
|
configureDir("build/relwithbeb", "RelWithDeb", dryrun);
|
||||||
break;
|
break;
|
||||||
case minsizerel:
|
case minsizerel:
|
||||||
configureDir("build/minsizerel", "MinSizeRel", dryrun);
|
configureDir("build/minsizerel", "MinSizeRel", dryrun);
|
||||||
@@ -73,7 +73,7 @@ void cleanProject(const BuildType buildType, bool dryrun) {
|
|||||||
cleanDir("build/release", dryrun);
|
cleanDir("build/release", dryrun);
|
||||||
break;
|
break;
|
||||||
case relwithdeb:
|
case relwithdeb:
|
||||||
cleanDir("build/RelWithDeb", dryrun);
|
cleanDir("build/relwithdeb", dryrun);
|
||||||
break;
|
break;
|
||||||
case minsizerel:
|
case minsizerel:
|
||||||
cleanDir("build/minsizerel", dryrun);
|
cleanDir("build/minsizerel", dryrun);
|
||||||
|
|||||||
Reference in New Issue
Block a user