-
Notifications
You must be signed in to change notification settings - Fork 1
/
example-cpp.code-workspace
47 lines (47 loc) · 1.28 KB
/
example-cpp.code-workspace
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
39
40
41
42
43
44
45
46
47
{
"folders": [
{
"path": "./",
},
],
"settings": {
"search.exclude": {
"**/.cache": true,
"**/build": true,
"**/compile_commands.json": true
},
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"**/Thumbs.db": true,
"**/.cache": true,
"**/build": true,
"**/compile_commands.json": true
},
"terminal.integrated.profiles.linux": {
"bash": {
"path": "bash",
"icon": "terminal-bash",
"args": [
"-l"
]
},
},
"C_Cpp.intelliSenseEngine": "disabled",
"terminal.integrated.defaultProfile.linux": "bash",
"cmake.copyCompileCommands": "${workspaceFolder}/compile_commands.json",
"clangd.arguments": [
"--query-driver=/usr/bin/arm*g*",
"--background-index",
"--completion-style=detailed",
"--header-insertion=iwyu",
"-j=4",
"--pch-storage=memory",
"--malloc-trim",
"--log=error"
]
}
}