25 lines
854 B
JSON
25 lines
854 B
JSON
{
|
|
// Use IntelliSense to learn about possible attributes.
|
|
// Hover to view descriptions of existing attributes.
|
|
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
|
|
"version": "0.2.0",
|
|
"configurations": [{
|
|
"name": "cci_param_restricted",
|
|
"type": "cppdbg",
|
|
"request": "launch",
|
|
"cwd": "${workspaceRoot}",
|
|
"program": "${workspaceRoot}/build/tests/cci_param_restricted/cci_param_restricted",
|
|
"linux": {
|
|
"MIMode": "gdb",
|
|
"miDebuggerPath": "/usr/bin/gdb"
|
|
},
|
|
"setupCommands": [
|
|
{
|
|
"description": "Enable pretty-printing for gdb",
|
|
"text": "-enable-pretty-printing",
|
|
"ignoreFailures": true
|
|
}
|
|
],
|
|
"preLaunchTask": "CMake: build"
|
|
}]
|
|
} |