mirror of
https://github.com/kuhyx/engineer-thesis-WUT.git
synced 2026-07-04 14:43:10 +02:00
28 lines
701 B
JSON
28 lines
701 B
JSON
{
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"name": "C/C++ Runner: Debug Session",
|
|
"type": "cppdbg",
|
|
"request": "launch",
|
|
"args": [
|
|
""
|
|
],
|
|
"stopAtEntry": false,
|
|
"cwd": "${workspaceFolder}/Engine/engine",
|
|
"environment": [],
|
|
"program": "${workspaceFolder}/Engine/engine/build/Debug/outDebug",
|
|
"internalConsoleOptions": "openOnSessionStart",
|
|
"MIMode": "gdb",
|
|
"miDebuggerPath": "gdb",
|
|
"externalConsole": false,
|
|
"setupCommands": [
|
|
{
|
|
"description": "Enable pretty-printing for gdb",
|
|
"text": "-enable-pretty-printing",
|
|
"ignoreFailures": true
|
|
}
|
|
]
|
|
}
|
|
]
|
|
} |