summaryrefslogtreecommitdiff
path: root/meson_options.txt
blob: 15a361fd380be2fdb813fc86679b9d1a49425549 (plain)
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('enable-gtk-doc',
    type: 'boolean',
    value: true,
    description: 'Enable generating the API reference'
)

option('enable-introspection',
    type: 'feature',
    value: 'auto',
    yield: true,
    description: 'Enable GObject Introspection'
)

option('enable-tests',
    type: 'boolean',
    value: true,
    description: 'Enable test suite'
)

option('enable-vala',
    type: 'feature',
    value: 'auto',
    yield: true,
    description: 'Enable Vala bindings'
)

option('libsoup-abi',
    type: 'combo',
    value: 'auto',
    choices: ['auto', '2.4', '3.0'],
    description: 'Select libsoup ABI version'
)

option('with-pci-ids-path',
    type: 'string',
    value: '',
    description: 'Location of pci.ids database'
)

option('with-usb-ids-path',
    type: 'string',
    value: '',
    description: 'Location of usb.ids database'
)