-
Notifications
You must be signed in to change notification settings - Fork 15
/
meson_options.txt
44 lines (36 loc) · 1.26 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
option('redirect_std',
type : 'boolean',
value : false,
description : 'Whether or not to redirect stdout and stderr to log files in the daemons.')
option('build_tests',
type : 'boolean',
value : false,
description : 'Whether or not to build tests.')
option('use_meson_install',
type : 'boolean',
value : false,
description : 'Whether or not to run install scripts from the build.')
option('development_build',
type : 'boolean',
value : false,
description : 'Whether or not to build Hawck for development.')
option('hawck_share_dir',
type : 'string',
value : 'share',
description : 'Where to install Hawck data files.')
option('hawck_cfg_dir',
type : 'string',
value : '/etc',
description : 'Where to install Hawck configuration files.')
option('udev_rules_dir',
type : 'string',
value : '/etc/udev/rules.d',
description : 'Where to install Hawck udev rules file.')
option('modules_load_dir',
type : 'string',
value : '/etc/modules-load.d',
description : 'Where to install Hawck modules file.')
option('with_systemd',
type : 'boolean',
value : true,
description : 'Install with systemd units.')