Skip to content

Commit ef9f4b2

Browse files
Update tasks.json
Adds macOS-specific commands
1 parent edb0866 commit ef9f4b2

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

.vscode/tasks.json

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@
88
"problemMatcher": [],
99
"windows": {
1010
"command": "./waf.bat configure -T debug --prefix=out/"
11+
},
12+
"osx": {
13+
"command": "python3 waf configure -T debug --prefix=out/"
1114
}
1215
},
1316
{
@@ -17,6 +20,9 @@
1720
"problemMatcher": [],
1821
"windows": {
1922
"command": "./waf.bat configure -T debug --64bits --prefix=out/"
23+
},
24+
"osx": {
25+
"command": "python3 waf configure -T debug --64bits --prefix=out/"
2026
}
2127
},
2228
{
@@ -46,6 +52,9 @@
4652
"base": "$msCompile",
4753
"fileLocation": ["relative", "${workspaceFolder}/build"]
4854
}
55+
},
56+
"osx": {
57+
"command": "python3 waf install"
4958
}
5059
}
5160
]

0 commit comments

Comments
 (0)