-
Notifications
You must be signed in to change notification settings - Fork 78
/
launch.vs.json
70 lines (70 loc) · 2.31 KB
/
launch.vs.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
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
{
"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
}
]
}
]
}