Update tasks.json

Adds macOS-specific commands
This commit is contained in:
Caroline Joy Bell 2023-01-12 21:34:29 -08:00 committed by GitHub
parent edb08661f2
commit ef9f4b2965
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

9
.vscode/tasks.json vendored
View File

@ -8,6 +8,9 @@
"problemMatcher": [], "problemMatcher": [],
"windows": { "windows": {
"command": "./waf.bat configure -T debug --prefix=out/" "command": "./waf.bat configure -T debug --prefix=out/"
},
"osx": {
"command": "python3 waf configure -T debug --prefix=out/"
} }
}, },
{ {
@ -17,6 +20,9 @@
"problemMatcher": [], "problemMatcher": [],
"windows": { "windows": {
"command": "./waf.bat configure -T debug --64bits --prefix=out/" "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", "base": "$msCompile",
"fileLocation": ["relative", "${workspaceFolder}/build"] "fileLocation": ["relative", "${workspaceFolder}/build"]
} }
},
"osx": {
"command": "python3 waf install"
} }
} }
] ]