forked from tomoyanonymous/juce_cmake_vscode_example
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjuce_cmake_vscode_example.code-workspace
89 lines (89 loc) · 2.16 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"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++\""
],
"editor.formatOnSave": true,
"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": [
{
"type": "lldb",
"request": "launch",
"name": "CMake Debug",
"program": "${command:cmake.launchTargetPath}",
"args": [],
"cwd": "${workspaceFolder}",
"postDebugTask": {
"task": "Build PlugIn",
}
},
]
},
"tasks": {
"version": "2.0.0",
"tasks": [
{
"label": "Launch AudioPluginHost",
"command": "${workspaceFolder}/lib/JUCE/extras/AudioPluginHost/Builds/MacOSX/build/Debug/AudioPluginHost.app/Contents/MacOS/AudioPluginHost",
"type": "shell",
"args": [],
// "problemMatcher": [
// "$tsc"
// ],
"presentation": {
"reveal": "always"
},
"group": {
"kind": "build",
"isDefault": true
},
"dependsOn": [
"Build PlugIn"
]
},
{
"label": "Build PlugIn",
"type": "shell",
"command": "/opt/homebrew/bin/cmake --build '/Users/michaelnaughton/coding projects/juce/juce_cmake_vscode_example/build' --config Debug --target SimpleEQ_VST3 -j 12 --",
"args": [],
"group": {
"kind": "build",
}
}
]
}
}