Files
KDDockWidgets/code.dev-qtwidgets.code-workspace
Sergio Martins af3fd6b296 vscode: Use "current" debug targets
(amends previous commit, forgot to save)
2023-03-25 11:21:42 +00:00

28 lines
555 B
Plaintext

{
"folders": [
{
"path": "."
}
],
"settings": {
"files.trimTrailingWhitespace": true,
"editor.formatOnType": true,
"cmake.copyCompileCommands": "${workspaceFolder}/compile_commands.json"
},
"launch": {
"version": "0.2.0",
"configurations": [
{
"name": "Current Target (LLDB)",
"type": "lldb",
"request": "launch",
"program": "${command:cmake.launchTargetPath}",
"args": [
""
],
"cwd": "${command:cmake.buildDirectory}"
}
]
}
}