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
|
option('build_overlay',
type : 'combo',
value : 'auto',
choices : ['auto', 'true', 'false'],
description : 'Build overlay')
option('overlay_backends',
type : 'array',
value : ['auto'],
choices : [ 'auto', 'x', 'xv' ],
description : 'Overlay backends to enable')
option('build_chamelium',
type : 'combo',
value : 'auto',
choices : ['auto', 'true', 'false'],
description : 'Build chamelium test')
option('with_valgrind',
type : 'combo',
value : 'auto',
choices : ['auto', 'true', 'false'],
description : 'Build with support for valgrind annotations')
option('build_man',
type : 'combo',
value : 'auto',
choices : ['auto', 'true', 'false'],
description : 'Build man pages')
option('build_docs',
type : 'combo',
value : 'auto',
choices : ['auto', 'true', 'false'],
description : 'Build documentation')
option('build_tests',
type : 'combo',
value : 'auto',
choices : ['auto', 'true', 'false'],
description : 'Build tests')
option('with_libdrm',
type : 'array',
value : ['auto'],
choices : ['', 'auto', 'intel', 'nouveau', 'amdgpu'],
description : 'libdrm libraries to be used')
option('with_libunwind',
type : 'combo',
value : 'auto',
choices : ['auto', 'true', 'false'],
description : 'Use libunwind')
option('build_runner',
type : 'combo',
value : 'auto',
choices : ['auto', 'true', 'false'],
description : 'Build test runner')
option('use_rpath',
type : 'boolean',
value : false,
description : 'Set runpath on installed executables for libigt.so')
|