From 34be1a4c07d8bb12c81e91569fd228ecc2903bcb Mon Sep 17 00:00:00 2001 From: Caroline Joy Bell Date: Fri, 13 Jan 2023 21:02:02 -0800 Subject: [PATCH] Update tasks.json Thought I already did this --- .vscode/tasks.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.vscode/tasks.json b/.vscode/tasks.json index 8dc70c0ce4..c1047249a5 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -28,13 +28,13 @@ { "label": "Configure Waf for Debug on Android (NDK r10e)", "type": "shell", - "command": "./waf configure -T release --android=armeabi-v7a-hard,4.9,21", + "command": "./waf configure -T debug --android=armeabi-v7a-hard,4.9,21", "problemMatcher": [], "windows": { - "command": "./waf.bat configure -T release --android=armeabi-v7a-hard,4.9,21" + "command": "./waf.bat configure -T debug --android=armeabi-v7a-hard,4.9,21" }, "osx": { - "command": "python3 waf configure -T release --android=armeabi-v7a-hard,4.9,21" + "command": "python3 waf configure -T debug --android=armeabi-v7a-hard,4.9,21" } }, {