-
Notifications
You must be signed in to change notification settings - Fork 0
/
launch.json
28 lines (28 loc) · 850 Bytes
/
launch.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{
"configurations": [
{
"type": "lldb",
"request": "launch",
"sourceLanguages": [
"swift"
],
"args": [],
"cwd": "${workspaceFolder:tiralabra}",
"name": "Debug tiralabra",
"program": "${workspaceFolder:tiralabra}/.build/debug/tiralabra",
"preLaunchTask": "swift: Build Debug tiralabra"
},
{
"type": "lldb",
"request": "launch",
"sourceLanguages": [
"swift"
],
"args": [],
"cwd": "${workspaceFolder:tiralabra}",
"name": "Release tiralabra",
"program": "${workspaceFolder:tiralabra}/.build/release/tiralabra",
"preLaunchTask": "swift: Build Release tiralabra"
}
]
}