-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCMakePresets.json
58 lines (58 loc) · 1.62 KB
/
CMakePresets.json
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
{
"version": 7,
"cmakeMinimumRequired": {
"major": 3,
"minor": 20,
"patch": 0
},
"configurePresets": [
{
"name": "default",
"displayName": "Default build preset",
"generator": "Ninja",
"cacheVariables": {
"CMAKE_MAKE_PROGRAM": "${sourceDir}/modules/ninja/ninja.exe"
}
},
{
"name": "iir-bandpass",
"binaryDir": "build-iir-bandpass",
"cacheVariables": {
"APP_DIR": "applications/iir-bandpass"
},
"inherits": "default"
},
{
"name": "envelope-detection",
"binaryDir": "build-envelope-detection",
"cacheVariables": {
"APP_DIR": "applications/envelope-detection"
},
"inherits": "default"
},
{
"name": "procedural-envelope",
"binaryDir": "build-procedural-envelope",
"cacheVariables": {
"APP_DIR": "applications/procedural-envelope"
},
"inherits": "default"
},
{
"name": "vocoder",
"binaryDir": "build-vocoder",
"cacheVariables": {
"APP_DIR": "applications/vocoder"
},
"inherits": "default"
},
{
"name": "fm",
"binaryDir": "build-fm",
"cacheVariables": {
"APP_DIR": "applications/fm"
},
"inherits": "default"
}
]
}