-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlaunch.vs.json
More file actions
30 lines (30 loc) · 968 Bytes
/
launch.vs.json
File metadata and controls
30 lines (30 loc) · 968 Bytes
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
29
30
{
"version": "0.2.1",
"defaults": {},
"configurations": [
{
"type": "default",
"name": "TinyTorrent (Debug): tray",
"project": "backend\\buildstate\\debug\\TinyTorrent.exe",
"currentDir": "${workspaceRoot}\\backend\\buildstate\\debug",
"preLaunchTask": "TinyTorrent (backend): make debug"
},
{
"type": "default",
"name": "TinyTorrent (Debug): tray (TT_NATIVE_DIAG)",
"project": "backend\\buildstate\\debug\\TinyTorrent.exe",
"currentDir": "${workspaceRoot}\\backend\\buildstate\\debug",
"preLaunchTask": "TinyTorrent (backend): make debug",
"envVars": {
"TT_NATIVE_DIAG": "1"
}
},
{
"type": "default",
"name": "TinyTorrent (Release): tray",
"project": "backend\\buildstate\\release\\TinyTorrent.exe",
"currentDir": "${workspaceRoot}\\backend\\buildstate\\release",
"preLaunchTask": "TinyTorrent (backend): make release"
}
]
}