From 02c60cf2c7bb44d9eb25affd960b331230305467 Mon Sep 17 00:00:00 2001 From: Caroline Joy Bell Date: Thu, 12 Jan 2023 21:38:45 -0800 Subject: [PATCH] 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. --- .vscode/tasks.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.vscode/tasks.json b/.vscode/tasks.json index c045c688..0e74f0cb 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -31,7 +31,10 @@ "command": "./waf configure -T release --android=armeabi-v7a-hard,4.9,21", "problemMatcher": [], "windows": { - "command": "echo \"Not supported on Windows.\"" + "command": "./waf.bat configure -T release --android=armeabi-v7a-hard,4.9,21" + }, + "osx": { + "command": "python3 waf configure -T release --android=armeabi-v7a-hard,4.9,21" } }, {