-
Notifications
You must be signed in to change notification settings - Fork 19
/
CMakePresets.json
36 lines (36 loc) · 1.03 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
{
"version": 3,
"cmakeMinimumRequired": {
"major": 2,
"minor": 8,
"patch": 12
},
"configurePresets": [
{
"name": "default",
"displayName": "Default Config (includes tools and examples but not unit-tests)",
"description": "Default build"
},
{
"name": "minimal",
"inherits": "default",
"displayName": "minimal MUSCLE build (library only)",
"description": "This configuration builds only the MUSCLE library itself; no tools, examples, Qt executables, or tests will be built",
"cacheVariables": {
"WITH_EXAMPLES": "OFF",
"WITH_MUSCLED": "OFF",
"WITH_TOOLS": "OFF",
"WITH_QT": "OFF"
}
},
{
"name": "full",
"inherits": "default",
"displayName": "full MUSCLE build (builds everything)",
"description": "This configuration builds every executable that can be built (including tools, examples, Qt executables, and unit tests)",
"cacheVariables": {
"WITH_TESTS": "ON"
}
}
]
}