-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathlaunch.json
58 lines (58 loc) · 1.82 KB
/
launch.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
{
// this configuration use the ms-vscode.cmake-tools extension
"version": "0.2.0",
"configurations": [
{
"name": "win primeiro-joao",
"type": "cppdbg",
"request": "launch",
"program": "${command:cmake.launchTargetPath}",
"args": [
"${workspaceFolder}/examples/primeiro-joao/00syncProp.ncl",
],
"cwd": "${workspaceFolder}",
"environment": [
{
"name": "PATH",
"value": "${env:PATH};${command:cmake.getLaunchTargetDirectory}"
},
],
"miDebuggerPath": "C:/msys64/mingw64/bin/gdb.exe",
"externalConsole": false,
"stopAtEntry": false,
"setupCommands": [
{
"description": "gdb",
"text": "-enable-pretty-printing",
"ignoreFailures": true
}
]
},
{
"name": "win gingagui -b",
"type": "cppdbg",
"request": "launch",
"program": "${command:cmake.launchTargetPath}",
"args": [
"-b",
],
"cwd": "${workspaceFolder}",
"environment": [
{
"name": "PATH",
"value": "${env:PATH};${command:cmake.getLaunchTargetDirectory}"
},
],
"miDebuggerPath": "C:/msys64/mingw64/bin/gdb.exe",
"externalConsole": false,
"stopAtEntry": false,
"setupCommands": [
{
"description": "gdb",
"text": "-enable-pretty-printing",
"ignoreFailures": true
}
]
}
]
}