-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathjuce_cmake_vscode_example.code-workspace
60 lines (60 loc) · 1.38 KB
/
juce_cmake_vscode_example.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
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"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}/build",
"git.ignoreLimitWarning": true,
"clangd.arguments": [
"-clang-tidy",
"-background-index",
"-compile-commands-dir=${workspaceFolder}/build",
"-header-insertion=never",
"--query-driver=\"/usr/bin/clang++\""
],
"cmake.ctestArgs": [
"--verbose"
],
"cmake.configureArgs": [
// if you want to build AAX, set PATH for SDK here.
// "-DAAX_SDK_PATH="
],
"cmake.preferredGenerators": [
"Ninja",
"Unix Makefiles"
]
},
"launch": {
"configurations": [
{
"name": "Debug via lldb",
"request": "launch",
"type": "lldb",
"program": "${command:cmake.launchTargetPath}",
"args": [],
"cwd": "${workspaceFolder}"
},
{
"name": "Debug via cppvsdbg",
"request": "launch",
"type": "cppvsdbg",
"program": "${command:cmake.launchTargetPath}",
"args": [],
"cwd": "${workspaceFolder}"
}
]
}
}