2023-01-09 16:57:09 +00:00
|
|
|
{
|
|
|
|
"version": "2.0.0",
|
|
|
|
"tasks": [
|
|
|
|
{
|
2023-01-13 05:15:42 +00:00
|
|
|
"label": "Configure Waf for Debug 32-bit",
|
2023-01-09 16:57:09 +00:00
|
|
|
"type": "shell",
|
2023-01-16 15:54:17 +00:00
|
|
|
"command": "./waf configure -T debug --prefix=build/out/",
|
2023-01-09 16:57:09 +00:00
|
|
|
"problemMatcher": [],
|
|
|
|
"windows": {
|
2023-01-13 16:00:04 +00:00
|
|
|
"command": "./waf.bat configure -T debug --prefix=build/out/"
|
2023-01-13 05:34:29 +00:00
|
|
|
},
|
|
|
|
"osx": {
|
2023-01-13 16:00:04 +00:00
|
|
|
"command": "python3 waf configure -T debug --prefix=build/out/"
|
2023-01-09 16:57:09 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
2023-01-13 05:15:42 +00:00
|
|
|
"label": "Configure Waf for Debug 64-bit",
|
2023-01-09 16:57:09 +00:00
|
|
|
"type": "shell",
|
2023-01-13 16:00:04 +00:00
|
|
|
"command": "./waf configure -T debug --64bits --prefix=build/out/",
|
2023-01-09 16:57:09 +00:00
|
|
|
"problemMatcher": [],
|
|
|
|
"windows": {
|
2023-01-13 16:00:04 +00:00
|
|
|
"command": "./waf.bat configure -T debug --64bits --prefix=build/out/"
|
2023-01-13 05:34:29 +00:00
|
|
|
},
|
|
|
|
"osx": {
|
2023-01-13 16:00:04 +00:00
|
|
|
"command": "python3 waf configure -T debug --64bits --prefix=build/out/"
|
2023-01-09 16:57:09 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
2023-01-13 15:50:03 +00:00
|
|
|
"label": "Configure Waf for Debug on Android (NDK r10e)",
|
2023-01-09 16:57:09 +00:00
|
|
|
"type": "shell",
|
2023-01-14 05:02:02 +00:00
|
|
|
"command": "./waf configure -T debug --android=armeabi-v7a-hard,4.9,21",
|
2023-01-13 05:15:42 +00:00
|
|
|
"problemMatcher": [],
|
2023-01-09 16:57:09 +00:00
|
|
|
"windows": {
|
2023-01-14 05:02:02 +00:00
|
|
|
"command": "./waf.bat configure -T debug --android=armeabi-v7a-hard,4.9,21"
|
2023-01-13 05:38:45 +00:00
|
|
|
},
|
|
|
|
"osx": {
|
2023-01-14 05:02:02 +00:00
|
|
|
"command": "python3 waf configure -T debug --android=armeabi-v7a-hard,4.9,21"
|
2023-01-09 16:57:09 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"label": "Build",
|
|
|
|
"type": "shell",
|
|
|
|
"command": "./waf install",
|
2023-01-13 05:15:42 +00:00
|
|
|
"problemMatcher": {
|
|
|
|
"base": "$gcc",
|
|
|
|
"fileLocation": ["relative", "${workspaceFolder}/build"]
|
|
|
|
},
|
2023-01-09 16:57:09 +00:00
|
|
|
"group": {
|
|
|
|
"kind": "build",
|
|
|
|
"isDefault": true
|
2023-01-13 05:15:42 +00:00
|
|
|
},
|
|
|
|
"windows": {
|
|
|
|
"command": "./waf.bat install",
|
|
|
|
"problemMatcher": {
|
|
|
|
"base": "$msCompile",
|
|
|
|
"fileLocation": ["relative", "${workspaceFolder}/build"]
|
|
|
|
}
|
2023-01-13 05:34:29 +00:00
|
|
|
},
|
|
|
|
"osx": {
|
|
|
|
"command": "python3 waf install"
|
2023-01-09 16:57:09 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|