-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathjuce-python.code-workspace
More file actions
48 lines (48 loc) · 971 Bytes
/
juce-python.code-workspace
File metadata and controls
48 lines (48 loc) · 971 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
39
40
41
42
43
44
45
46
47
48
{
"folders": [
{
"path": "."
}
],
"extensions": {
"recommendations": [
"ms-vscode.cmake-tools",
"twxs.cmake",
"ms-vscode.cpptools",
"llvm-vs-code-extensions.vscode-clangd",
"vadimcn.vscode-lldb"
]
},
"settings": {
"C_Cpp.intelliSenseEngine": "Disabled",
"C_Cpp.default.cppStandard": "c++17",
"cmake.buildDirectory": "${workspaceFolder}/Builds",
"git.ignoreLimitWarning": true,
"clangd.arguments": [
"-clang-tidy",
"-background-index",
"-compile-commands-dir=${workspaceFolder}/Builds",
"-header-insertion=never",
"--query-driver=\"/usr/bin/clang++\""
],
"cmake.ctestArgs": [
"--verbose"
],
"cmake.configureArgs": [
"-DBUILD_TEST=ON"
]
},
"launch": {
"version": "0.2.0",
"configurations": [
{
"type": "lldb",
"request": "launch",
"name": "Debug",
"program": "${command:cmake.launchTargetPath}",
"args": [],
"cwd": "${workspaceFolder}"
}
]
}
}⏎