-
-
Notifications
You must be signed in to change notification settings - Fork 109
/
meson.options
55 lines (44 loc) · 1.36 KB
/
meson.options
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
option('libsystemd',
type : 'boolean',
description : 'Use systemd for daemon auto start')
option('libudev',
type : 'boolean',
description : 'Use libudev (preferred) for USB hotplug')
option('libusb',
type : 'boolean',
value : false,
description : 'Use libusb for USB hotplug')
option('polkit',
type : 'boolean',
description : 'Use polkit to enforce access control')
option('usb',
type : 'boolean',
description : 'Support USB readers')
option('serial',
type : 'boolean',
description : 'Support serial readers')
option('serialconfdir',
type : 'string',
value : '/etc/reader.conf.d',
description : 'Path for serial configuration files')
option('usbdropdir',
type : 'string',
value : '/usr/lib/pcsc/drivers',
description : 'Path for USB drivers')
option('ipcdir',
type : 'string',
value : '/run/pcscd',
description : 'Direcrory for pcsc-lite internal communication socket')
option('systemdunit',
type : 'combo',
choices : ['user', 'system'],
value : 'user',
description : 'Systemd unit directory to use')
option('embedded',
type : 'boolean',
value : false,
description : 'for embedded systems [limit RAM and CPU resources by disabling features (log)]')
option('filter_names',
type : 'boolean',
value : true,
description : 'reader filtering using PCSCLITE_FILTER_IGNORE_READER_NAMES and PCSCLITE_FILTER_EXTEND_READER_NAMES')