We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a950c2e commit af4e0b5Copy full SHA for af4e0b5
.vscode/launch.json
@@ -0,0 +1,22 @@
1
+{
2
+ "configurations": [
3
+ {
4
+ "type": "lldb",
5
+ "request": "launch",
6
+ "name": "Debug mint",
7
+ "program": "${workspaceFolder:Mint}/.build/debug/mint",
8
+ "args": [],
9
+ "cwd": "${workspaceFolder:Mint}",
10
+ "preLaunchTask": "swift: Build Debug mint"
11
+ },
12
13
14
15
+ "name": "Release mint",
16
+ "program": "${workspaceFolder:Mint}/.build/release/mint",
17
18
19
+ "preLaunchTask": "swift: Build Release mint"
20
+ }
21
+ ]
22
+}
0 commit comments