forked from IgnorantGuru/spacefm
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathmeson_options.txt
97 lines (84 loc) · 1.79 KB
/
meson_options.txt
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
option(
'tests',
type : 'boolean',
value : false,
description : 'Build the test suite'
)
option(
'deprecated',
type : 'boolean',
value: true,
description : 'enable deprecated features'
)
option(
'dev',
type : 'boolean',
value: false,
description : 'enable development features'
)
option(
'exo',
type : 'boolean',
value: true,
description : 'Build PtkFileBrowser to use gtk wrapper exo (EXPERIMENTAL)'
)
option(
'socket',
type : 'boolean',
value: true,
description : 'Enable socket commands'
)
option(
'media',
type : 'boolean',
value: true,
description : 'Enable extra Audio, Video, and Image support'
)
option(
'with-system-cli11',
type : 'boolean',
value: false,
description : 'Use system cli11 instead of bundled version'
)
option(
'with-system-concurrencpp',
type : 'boolean',
value: false,
description : 'Use system concurrencpp instead of bundled version'
)
option(
'with-system-glaze',
type : 'boolean',
value: false,
description : 'Use system glaze instead of bundled version'
)
option(
'with-system-magic-enum',
type : 'boolean',
value: false,
description : 'Use system magic_enum instead of bundled version'
)
option(
'with-system-spdlog',
type : 'boolean',
value: false,
description : 'Use system spdlog instead of bundled version'
)
option(
'with-system-toml11',
type : 'boolean',
value: false,
description : 'Use system toml11 instead of bundled version'
)
option(
'with-system-ztd',
type : 'boolean',
value: false,
description : 'Use system ztd instead of bundled version'
)
option(
'zmp_port',
type : 'integer',
value: 59172,
description : 'Port number to use for socket commands'
)