From ef9f4b2965fee47234a033b0f9e8d453b558da41 Mon Sep 17 00:00:00 2001 From: Caroline Joy Bell Date: Thu, 12 Jan 2023 21:34:29 -0800 Subject: [PATCH] Update tasks.json Adds macOS-specific commands --- .vscode/tasks.json | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.vscode/tasks.json b/.vscode/tasks.json index d4f801a0..c045c688 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -8,6 +8,9 @@ "problemMatcher": [], "windows": { "command": "./waf.bat configure -T debug --prefix=out/" + }, + "osx": { + "command": "python3 waf configure -T debug --prefix=out/" } }, { @@ -17,6 +20,9 @@ "problemMatcher": [], "windows": { "command": "./waf.bat configure -T debug --64bits --prefix=out/" + }, + "osx": { + "command": "python3 waf configure -T debug --64bits --prefix=out/" } }, { @@ -46,6 +52,9 @@ "base": "$msCompile", "fileLocation": ["relative", "${workspaceFolder}/build"] } + }, + "osx": { + "command": "python3 waf install" } } ]