Skip to content

Commit 02c60cf

Browse files
Update tasks.json
Adding commands for Android build on Windows and macOS just in case it's now supported. This will just result in an error if it's not supported anyway.
1 parent ef9f4b2 commit 02c60cf

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.vscode/tasks.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,10 @@
3131
"command": "./waf configure -T release --android=armeabi-v7a-hard,4.9,21",
3232
"problemMatcher": [],
3333
"windows": {
34-
"command": "echo \"Not supported on Windows.\""
34+
"command": "./waf.bat configure -T release --android=armeabi-v7a-hard,4.9,21"
35+
},
36+
"osx": {
37+
"command": "python3 waf configure -T release --android=armeabi-v7a-hard,4.9,21"
3538
}
3639
},
3740
{

0 commit comments

Comments
 (0)