forked from audacity/audacity
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaudacity.code-workspace
30 lines (30 loc) · 1.16 KB
/
audacity.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
{
"folders": [
{
"path": ".."
}
],
"settings": {
"cmake.generator": "Ninja",
"cmake.configureArgs": [
"-DCMAKE_INSTALL_PREFIX=${workspaceFolder}/build/install",
// "-DAU_MODULE_EFFECTS_VST=ON"
],
"editor.guides.indentation": true,
"editor.detectIndentation": true,
"editor.guides.highlightActiveIndentation": true,
"editor.autoIndent": "full",
"editor.tabSize": 4,
"explorer.excludeGitIgnore": false,
"search.useIgnoreFiles": false,
"files.exclude": {
"build": true,
"builds": true
},
"C_Cpp.autoAddFileAssociations": false,
"uncrustify.configPath.windows": "${workspaceFolder}/_deps/muse_framework-src/buildscripts/ci/checkcodestyle/uncrustify_muse.cfg",
"uncrustify.configPath.linux": "${workspaceFolder}/_deps/muse_framework-src/buildscripts/ci/checkcodestyle/uncrustify_muse.cfg",
"uncrustify.configPath.osx": "${workspaceFolder}/_deps/muse_framework-src/buildscripts/ci/checkcodestyle/uncrustify_muse.cfg",
"cmake.useVsDeveloperEnvironment": "auto",
}
}