-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathvscode.code-workspace
More file actions
38 lines (38 loc) · 901 Bytes
/
vscode.code-workspace
File metadata and controls
38 lines (38 loc) · 901 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
"folders": [
{
"path": "."
}
],
"settings": {
"files.trimTrailingWhitespace": true,
"editor.formatOnSave": true,
"clangd.arguments": [
"-header-insertion=never",
"--clang-tidy=false"
],
"cmake.copyCompileCommands": "${workspaceFolder}/compile_commands.json",
"files.insertFinalNewline": true
},
"launch": {
"version": "0.2.0",
"configurations": [
{
"name": "Current Target (LLDB)",
"type": "lldb",
"request": "launch",
"program": "${command:cmake.launchTargetPath}",
"args": [],
"cwd": "${command:cmake.buildDirectory}"
},
{
"name": "Current Target (VS)",
"type": "cppvsdbg",
"request": "launch",
"program": "${command:cmake.launchTargetPath}",
"args": [],
"cwd": "${command:cmake.buildDirectory}"
}
]
}
}