Update tasks.json
Addresses some comments by @exstrim401. These changes were made through GitHub's editor, they have not been tested.
This commit is contained in:
parent
b6de5bb712
commit
edb08661f2
28
.vscode/tasks.json
vendored
28
.vscode/tasks.json
vendored
@ -2,28 +2,28 @@
|
|||||||
"version": "2.0.0",
|
"version": "2.0.0",
|
||||||
"tasks": [
|
"tasks": [
|
||||||
{
|
{
|
||||||
"label": "Configure Waf for host OS: x86",
|
"label": "Configure Waf for Debug 32-bit",
|
||||||
"type": "shell",
|
"type": "shell",
|
||||||
|
"command": "./waf configure -T debug --prefix=out/",
|
||||||
"problemMatcher": [],
|
"problemMatcher": [],
|
||||||
"command": "./waf configure -T release --prefix=out/",
|
|
||||||
"windows": {
|
"windows": {
|
||||||
"command": "./waf.bat configure -T release --prefix=out/"
|
"command": "./waf.bat configure -T debug --prefix=out/"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"label": "Configure Waf for host OS: x86_64",
|
"label": "Configure Waf for Debug 64-bit",
|
||||||
"type": "shell",
|
"type": "shell",
|
||||||
|
"command": "./waf configure -T debug --64bits --prefix=out/",
|
||||||
"problemMatcher": [],
|
"problemMatcher": [],
|
||||||
"command": "./waf configure -T release --64bits --prefix=out/",
|
|
||||||
"windows": {
|
"windows": {
|
||||||
"command": "./waf.bat configure -T release --64bits --prefix=out/"
|
"command": "./waf.bat configure -T debug --64bits --prefix=out/"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"label": "Configure Waf for outdated Android",
|
"label": "Configure Waf for Debug on outdated Android",
|
||||||
"type": "shell",
|
"type": "shell",
|
||||||
"problemMatcher": [],
|
|
||||||
"command": "./waf configure -T release --android=armeabi-v7a-hard,4.9,21",
|
"command": "./waf configure -T release --android=armeabi-v7a-hard,4.9,21",
|
||||||
|
"problemMatcher": [],
|
||||||
"windows": {
|
"windows": {
|
||||||
"command": "echo \"Not supported on Windows.\""
|
"command": "echo \"Not supported on Windows.\""
|
||||||
}
|
}
|
||||||
@ -31,11 +31,21 @@
|
|||||||
{
|
{
|
||||||
"label": "Build",
|
"label": "Build",
|
||||||
"type": "shell",
|
"type": "shell",
|
||||||
"problemMatcher": [],
|
|
||||||
"command": "./waf install",
|
"command": "./waf install",
|
||||||
|
"problemMatcher": {
|
||||||
|
"base": "$gcc",
|
||||||
|
"fileLocation": ["relative", "${workspaceFolder}/build"]
|
||||||
|
},
|
||||||
"group": {
|
"group": {
|
||||||
"kind": "build",
|
"kind": "build",
|
||||||
"isDefault": true
|
"isDefault": true
|
||||||
|
},
|
||||||
|
"windows": {
|
||||||
|
"command": "./waf.bat install",
|
||||||
|
"problemMatcher": {
|
||||||
|
"base": "$msCompile",
|
||||||
|
"fileLocation": ["relative", "${workspaceFolder}/build"]
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
Loading…
x
Reference in New Issue
Block a user