Files
LXC/.vscode/launch.json
Pasha Bibko c59d8cfb5c Setup VSCode build system
Works on both Linux and Windows
2025-08-11 14:09:01 +01:00

58 lines
1.5 KiB
JSON

{
"version": "0.2.0",
"configurations":
[
{
"name": "Run lxc",
"type": "cppdbg",
"request": "launch",
"program": "${workspaceRoot}/lxc",
"args": [],
"stopAtEntry": false,
"cwd": "${workspaceFolder}",
"environment": [],
"externalConsole": true,
"preLaunchTask": "build",
"windows": { "MIMode": "cppvsdbg", },
"linux": { "MIMode": "gdb" },
"setupCommands":
[
{
"description": "Enable pretty-printing for gdb",
"text": "-enable-pretty-printing",
"ignoreFailures": false
}
]
},
{
"name": "Run LXC_Tests",
"type": "cppdbg",
"request": "launch",
"program": "${workspaceRoot}/LXC_Tests",
"args": [],
"stopAtEntry": false,
"cwd": "${workspaceFolder}",
"environment": [],
"externalConsole": true,
"preLaunchTask": "build",
"windows": { "MIMode": "cppvsdbg", },
"linux": { "MIMode": "gdb" },
"setupCommands":
[
{
"description": "Enable pretty-printing for gdb",
"text": "-enable-pretty-printing",
"ignoreFailures": false
}
]
}
]
}