-
Notifications
You must be signed in to change notification settings - Fork 115
Expand file tree
/
Copy pathlaunch.vs.json
More file actions
95 lines (95 loc) · 3.51 KB
/
Copy pathlaunch.vs.json
File metadata and controls
95 lines (95 loc) · 3.51 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"version": "0.2.1",
"defaults": {},
"configurations": [
{
"type": "cppdbg",
"project": "CMakeLists.txt",
"projectTarget": "keeperfx.exe",
"name": "keeperfx.exe (gdb)",
"currentDir": "E:\\Games\\keeperfx_1_2_0_complete",
"cwd": "E:\\Games\\keeperfx_1_2_0_complete",
"args": [
"-level",
"00001",
"-campaign",
"personal",
"-nointro",
"-alex"
],
"program": "${debugInfo.target}",
"MIMode": "gdb",
"miDebuggerPath": "C:\\msys64\\mingw32\\bin\\gdb.exe",
"externalConsole": true,
"setupCommands": [
{
"description": "Enable pretty-printing for gdb",
"text": "-enable-pretty-printing",
"ignoreFailures": true
},
{
"description": "Set Disassembly Flavor to Intel",
"text": "-gdb-set disassembly-flavor intel",
"ignoreFailures": true
}
]
},
{
"type": "cppdbg",
"project": "CMakeLists.txt",
"projectTarget": "keeperfx_hvlog.exe",
"name": "keeperfx_hvlog.exe (gdb)",
"currentDir": "E:\\Games\\keeperfx_1_2_0_complete",
"cwd": "E:\\Games\\keeperfx_1_2_0_complete",
"args": [
"-level",
"00001",
"-campaign",
"personal",
"-nointro",
"-alex"
],
"program": "${debugInfo.target}",
"MIMode": "gdb",
"miDebuggerPath": "C:\\msys64\\mingw32\\bin\\gdb.exe",
"externalConsole": true,
"setupCommands": [
{
"description": "Enable pretty-printing for gdb",
"text": "-enable-pretty-printing",
"ignoreFailures": true
},
{
"description": "Set Disassembly Flavor to Intel",
"text": "-gdb-set disassembly-flavor intel",
"ignoreFailures": true
}
]
},
{
"//": "Remote debug on a Steam Deck over gdbserver. First deploy + start the server (scripts/deploy-to-deck.sh --gdb), then pick this profile. See docs/steam-deck.md. 'program' is the LOCAL symbol copy of the deployed binary; 'miDebuggerServerAddress' points at the Deck.",
"type": "cppdbg",
"name": "keeperfx on Steam Deck (gdbserver)",
"project": "CMakeLists.txt",
"projectTarget": "keeperfx",
"program": "${debugInfo.target}",
"MIMode": "gdb",
"miDebuggerPath": "C:\\msys64\\mingw32\\bin\\gdb.exe",
"miDebuggerServerAddress": "steamdeck:2345",
"cwd": "${debugInfo.defaultWorkingDirectory}",
"externalConsole": false,
"setupCommands": [
{
"description": "Enable pretty-printing for gdb",
"text": "-enable-pretty-printing",
"ignoreFailures": true
},
{
"description": "Set Disassembly Flavor to Intel",
"text": "-gdb-set disassembly-flavor intel",
"ignoreFailures": true
}
]
}
]
}