-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtasks.vs.json
More file actions
38 lines (38 loc) · 1.24 KB
/
tasks.vs.json
File metadata and controls
38 lines (38 loc) · 1.24 KB
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
31
32
33
34
35
36
37
38
{
"version": "0.2.1",
"tasks": [
{
"taskName": "TinyTorrent (backend): make debug",
"appliesTo": "backend/meson.build",
"type": "launch",
"contextType": "build",
"command": "powershell",
"args": ["-NoProfile", "-ExecutionPolicy", "Bypass", "-File", "${workspaceRoot}\\backend\\make.ps1", "debug"],
"envVars": {
"VSCMD_START_DIR": "\"${workspaceRoot}\\backend\""
}
},
{
"taskName": "TinyTorrent (backend): make release",
"appliesTo": "backend/meson.build",
"type": "launch",
"contextType": "rebuild",
"command": "powershell",
"args": ["-NoProfile", "-ExecutionPolicy", "Bypass", "-File", "${workspaceRoot}\\backend\\make.ps1", "release"],
"envVars": {
"VSCMD_START_DIR": "\"${workspaceRoot}\\backend\""
}
},
{
"taskName": "TinyTorrent (backend): make clean",
"appliesTo": "backend/meson.build",
"type": "launch",
"contextType": "clean",
"command": "powershell",
"args": ["-NoProfile", "-ExecutionPolicy", "Bypass", "-File", "${workspaceRoot}\\backend\\make.ps1", "clean", "-AutoConfirmDeletion"],
"envVars": {
"VSCMD_START_DIR": "\"${workspaceRoot}\\backend\""
}
}
]
}