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

9
.vscode/tasks.json vendored
View File

@@ -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"
}
}
]