xref: /reactos/.theia/launch.json (revision 53221834)
1{
2  // Use IntelliSense to learn about possible attributes.
3  // Hover to view descriptions of existing attributes.
4  "version": "0.2.0",
5  "configurations": [
6    {
7      "type": "cppdbg",
8      "request": "launch",
9      "name": "livecd (qemu)",
10      "preLaunchTask": "launch livecd",
11      "miDebuggerServerAddress": "localhost:9091",
12      "miDebuggerArgs": "-l 15 -ex 'set sysroot ${workspaceRoot}/build/symbols'",
13      "program": "${workspaceRoot}/build/ntoskrnl/ntoskrnl.exe",
14      "cwd": "${workspaceRoot}/build",
15      "miDebuggerPath": "i686-w64-mingw32-gdb"
16    },
17    {
18      "type": "cppdbg",
19      "request": "launch",
20      "name": "bootcd (qemu)",
21      "preLaunchTask": "launch bootcd",
22      "miDebuggerServerAddress": "localhost:9091",
23      "miDebuggerArgs": "-l 15 -ex 'set sysroot ${workspaceRoot}/build/symbols'",
24      "program": "${workspaceRoot}/build/ntoskrnl/ntoskrnl.exe",
25      "cwd": "${workspaceRoot}/build",
26      "miDebuggerPath": "i686-w64-mingw32-gdb"
27    }
28  ]
29}
30