From d7a2277804cb0d992b1a1c6dfd050064b16d4fec Mon Sep 17 00:00:00 2001 From: Caroline Joy Bell Date: Fri, 13 Jan 2023 08:00:04 -0800 Subject: [PATCH] Update tasks.json --- .vscode/tasks.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.vscode/tasks.json b/.vscode/tasks.json index 5b236400..8dc70c0c 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -7,22 +7,22 @@ "command": "./waf configure -T debug --prefix=out/", "problemMatcher": [], "windows": { - "command": "./waf.bat configure -T debug --prefix=out/" + "command": "./waf.bat configure -T debug --prefix=build/out/" }, "osx": { - "command": "python3 waf configure -T debug --prefix=out/" + "command": "python3 waf configure -T debug --prefix=build/out/" } }, { "label": "Configure Waf for Debug 64-bit", "type": "shell", - "command": "./waf configure -T debug --64bits --prefix=out/", + "command": "./waf configure -T debug --64bits --prefix=build/out/", "problemMatcher": [], "windows": { - "command": "./waf.bat configure -T debug --64bits --prefix=out/" + "command": "./waf.bat configure -T debug --64bits --prefix=build/out/" }, "osx": { - "command": "python3 waf configure -T debug --64bits --prefix=out/" + "command": "python3 waf configure -T debug --64bits --prefix=build/out/" } }, {