-
Notifications
You must be signed in to change notification settings - Fork 315
/
CMakePresets.json
58 lines (58 loc) · 1.33 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": 3,
"configurePresets": [
{
"name": "samples",
"description": "Enable samples but only those without extra dependencies.",
"cacheVariables": {
"RMLUI_SAMPLES": true
}
},
{
"name": "samples-all",
"description": "Enable all samples, also those with extra dependencies.",
"inherits": "samples",
"cacheVariables": {
"RMLUI_HARFBUZZ_SAMPLE": true,
"RMLUI_LOTTIE_PLUGIN": true,
"RMLUI_SVG_PLUGIN": true,
"RMLUI_LUA_BINDINGS": true
}
},
{
"name": "standalone",
"description": "Build the library completely without any dependencies, features the `bitmap_font` sample.",
"cacheVariables": {
"RMLUI_SAMPLES": true,
"RMLUI_FONT_ENGINE": "none",
"RMLUI_BACKEND": "native"
}
},
{
"name": "dev",
"description": "Enable testing in addition to samples.",
"installDir": "Install",
"cacheVariables": {
"RMLUI_SAMPLES": true,
"BUILD_TESTING": true
},
"warnings": {
"dev": true
},
"errors": {
"dev": true
}
},
{
"name": "dev-all",
"description": "Enable testing in addition to samples, including those that require extra dependencies.",
"inherits": "dev",
"cacheVariables": {
"RMLUI_HARFBUZZ_SAMPLE": true,
"RMLUI_LOTTIE_PLUGIN": true,
"RMLUI_SVG_PLUGIN": true,
"RMLUI_LUA_BINDINGS": true
}
}
]
}