mirror of
https://github.com/reactos/reactos.git
synced 2024-11-01 04:11:30 +00:00
04d0d95b8a
this commit adds support for Gitpod.io, a free automated dev environment that makes contributing and generally working on GitHub projects much easier. It allows anyone to start a ready-to-code dev environment for any branch, issue and pull request with a single click.
30 lines
1,003 B
JSON
30 lines
1,003 B
JSON
{
|
|
// Use IntelliSense to learn about possible attributes.
|
|
// Hover to view descriptions of existing attributes.
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"type": "cppdbg",
|
|
"request": "launch",
|
|
"name": "livecd (qemu)",
|
|
"preLaunchTask": "launch livecd",
|
|
"miDebuggerServerAddress": "localhost:9091",
|
|
"miDebuggerArgs": "-l 15 -ex 'set sysroot ${workspaceRoot}/build/symbols'",
|
|
"program": "${workspaceRoot}/build/ntoskrnl/ntoskrnl.exe",
|
|
"cwd": "${workspaceRoot}/build",
|
|
"miDebuggerPath": "i686-w64-mingw32-gdb"
|
|
},
|
|
{
|
|
"type": "cppdbg",
|
|
"request": "launch",
|
|
"name": "bootcd (qemu)",
|
|
"preLaunchTask": "launch bootcd",
|
|
"miDebuggerServerAddress": "localhost:9091",
|
|
"miDebuggerArgs": "-l 15 -ex 'set sysroot ${workspaceRoot}/build/symbols'",
|
|
"program": "${workspaceRoot}/build/ntoskrnl/ntoskrnl.exe",
|
|
"cwd": "${workspaceRoot}/build",
|
|
"miDebuggerPath": "i686-w64-mingw32-gdb"
|
|
}
|
|
]
|
|
}
|