-
Notifications
You must be signed in to change notification settings - Fork 0
/
CMakePresets.json
111 lines (111 loc) · 3.22 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
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"version": 3,
"cmakeMinimumRequired": {
"major": 3,
"minor": 21,
"patch": 0
},
"configurePresets": [
{
"name": "base",
"hidden": true,
"binaryDir": "${sourceDir}/builds/${presetName}",
"generator": "Ninja Multi-Config",
"cacheVariables": {
"CMAKE_EXPORT_COMPILE_COMMANDS": {
"type": "BOOL",
"value": true
},
"CMAKE_POSITION_INDEPENDENT_CODE": {
"type": "BOOL",
"value": true
}
}
},
{
"name": "vs2022",
"displayName": "Windows-only configuration",
"description": "This build is only available on Windows",
"inherits": [
"base"
],
"generator": "Visual Studio 17 2022",
"architecture": "x64"
},
{
"name": "ninja-multi",
"displayName": "Ninja Multi-Config",
"description": "Default build using Ninja Multi-Config generator",
"inherits": [
"base"
]
},
{
"name": "xcode",
"displayName": "Xcode",
"description": "Default build using Xcode generator",
"inherits": [
"base"
],
"generator": "Xcode"
}
],
"buildPresets": [
{
"name": "base",
"hidden": true,
"targets":[
"WebGain_All",
"WebGain_CLAP",
"DenoGain_All",
"DenoGain_CLAP",
"WebVisualizer_All",
"WebVisualizer_CLAP",
"ReactSynth_All",
"ReactSynth_CLAP"
]
},
{
"name": "vs2022-debug",
"description": "Build using Visual Studio 17 2022 for Debug",
"configurePreset": "vs2022",
"configuration": "Debug",
"inherits": "base"
},
{
"name": "vs2022-release",
"description": "Build using Visual Studio 17 2022 for Release",
"configurePreset": "vs2022",
"configuration": "Release",
"inherits": "base"
},
{
"name": "ninja-debug",
"description": "Build using Ninja for Debug",
"configurePreset": "ninja-multi",
"configuration": "Debug",
"inherits": "base"
},
{
"name": "ninja-release",
"description": "Build using Ninja for Release",
"configurePreset": "ninja-multi",
"configuration": "Release",
"inherits": "base"
},
{
"name": "xcode-debug",
"description": "Build using Xcode for Debug",
"configurePreset": "xcode",
"configuration": "Debug",
"inherits": "base"
},
{
"name": "xcode-release",
"description": "Build using Xcode for Release",
"configurePreset": "xcode",
"configuration": "Release",
"inherits": "base"
}
]
}