Files
LXC/.vscode/launch.json
2025-08-20 21:25:33 +01:00

83 lines
2.1 KiB
JSON

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