82 lines
2.1 KiB
JSON
82 lines
2.1 KiB
JSON
{
|
|
"version": "0.2.0",
|
|
"configurations":
|
|
[
|
|
{
|
|
"name": "Debug lxc [Linux]",
|
|
"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": "Debug lxc [Win64]",
|
|
"type": "cppvsdbg",
|
|
"request": "launch",
|
|
"program": "${workspaceRoot}/lxc",
|
|
"args": [],
|
|
"stopAtEntry": false,
|
|
"cwd": "${workspaceFolder}",
|
|
"environment": [],
|
|
"externalConsole": true,
|
|
|
|
"preLaunchTask": "build"
|
|
},
|
|
|
|
{
|
|
"name": "Debug LXC_Tests [Linux]",
|
|
"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": "Debug LXC_Tests [Win64]",
|
|
"type": "cppvsdbg",
|
|
"request": "launch",
|
|
"program": "${workspaceRoot}/LXC_Tests",
|
|
"args": [],
|
|
"stopAtEntry": false,
|
|
"cwd": "${workspaceFolder}",
|
|
"environment": [],
|
|
"externalConsole": true,
|
|
|
|
"preLaunchTask": "build",
|
|
},
|
|
]
|
|
}
|