Skip to content

Commit af4e0b5

Browse files
committed
commit vscode file
1 parent a950c2e commit af4e0b5

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

.vscode/launch.json

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
"type": "lldb",
14+
"request": "launch",
15+
"name": "Release mint",
16+
"program": "${workspaceFolder:Mint}/.build/release/mint",
17+
"args": [],
18+
"cwd": "${workspaceFolder:Mint}",
19+
"preLaunchTask": "swift: Build Release mint"
20+
}
21+
]
22+
}

0 commit comments

Comments
 (0)