edb08661f2
Addresses some comments by @exstrim401. These changes were made through GitHub's editor, they have not been tested.
52 lines
1.6 KiB
JSON
52 lines
1.6 KiB
JSON
{
|
|
"version": "2.0.0",
|
|
"tasks": [
|
|
{
|
|
"label": "Configure Waf for Debug 32-bit",
|
|
"type": "shell",
|
|
"command": "./waf configure -T debug --prefix=out/",
|
|
"problemMatcher": [],
|
|
"windows": {
|
|
"command": "./waf.bat configure -T debug --prefix=out/"
|
|
}
|
|
},
|
|
{
|
|
"label": "Configure Waf for Debug 64-bit",
|
|
"type": "shell",
|
|
"command": "./waf configure -T debug --64bits --prefix=out/",
|
|
"problemMatcher": [],
|
|
"windows": {
|
|
"command": "./waf.bat configure -T debug --64bits --prefix=out/"
|
|
}
|
|
},
|
|
{
|
|
"label": "Configure Waf for Debug on outdated Android",
|
|
"type": "shell",
|
|
"command": "./waf configure -T release --android=armeabi-v7a-hard,4.9,21",
|
|
"problemMatcher": [],
|
|
"windows": {
|
|
"command": "echo \"Not supported on Windows.\""
|
|
}
|
|
},
|
|
{
|
|
"label": "Build",
|
|
"type": "shell",
|
|
"command": "./waf install",
|
|
"problemMatcher": {
|
|
"base": "$gcc",
|
|
"fileLocation": ["relative", "${workspaceFolder}/build"]
|
|
},
|
|
"group": {
|
|
"kind": "build",
|
|
"isDefault": true
|
|
},
|
|
"windows": {
|
|
"command": "./waf.bat install",
|
|
"problemMatcher": {
|
|
"base": "$msCompile",
|
|
"fileLocation": ["relative", "${workspaceFolder}/build"]
|
|
}
|
|
}
|
|
}
|
|
]
|
|
}
|