-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlaunch.vs.json
More file actions
34 lines (34 loc) · 841 Bytes
/
Copy pathlaunch.vs.json
File metadata and controls
34 lines (34 loc) · 841 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
31
32
33
34
{
"version": "0.2.1",
"defaults": {},
"configurations": [
{
"type": "default",
"project": "CMakeLists.txt",
"projectTarget": "Game.exe (source\\Game\\Game.exe)",
"name": "Game.exe (source\\Game\\Game.exe)",
"args": [
"\"${workspaceRoot}/source/Game/\""
]
},
{
"type": "default",
"project": "CMakeLists.txt",
"projectTarget": "Tests.exe (source\\Tests\\Tests.exe)",
"name": "Tests.exe (source\\Tests\\Tests.exe)",
"args": []
},
{
"type": "cppgdb",
"name": "Game (source\\Game\\Game)",
"project": "CMakeLists.txt",
"projectTarget": "Game (source\\Game\\Game)",
"comment": "Learn how to configure WSL debugging. See here for more info http://aka.ms/vslinuxdebug",
"debuggerConfiguration": "gdb",
"args": [
"\"${workspaceRoot}/source/Game/\""
],
"env": {}
}
]
}