Rename code.dev-qtwidgets.code-workspace to vscode.code-workspace

This commit is contained in:
Sergio Martins
2023-03-25 13:00:14 +00:00
parent c5cbe4064a
commit 832736c1e5

27
vscode.code-workspace Normal file
View File

@@ -0,0 +1,27 @@
{
"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}"
}
]
}
}