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
|
option('overlay',
type : 'feature',
description : 'Build overlay tool')
option('overlay_backends',
type : 'array',
value : ['auto'],
choices : [ 'auto', 'x', 'xv' ],
description : 'Overlay backends to enable')
option('chamelium',
type : 'feature',
description : 'Build Chamelium test')
option('valgrind',
type : 'feature',
description : 'Build with support for valgrind annotations')
option('man',
type : 'feature',
description : 'Build man pages')
option('docs',
type : 'feature',
description : 'Build documentation')
option('tests',
type : 'feature',
description : 'Build tests')
option('libdrm_drivers',
type : 'array',
value : ['auto'],
choices : ['', 'auto', 'intel', 'nouveau', 'amdgpu'],
description : 'libdrm libraries to be used')
option('libunwind',
type : 'feature',
description : 'Use libunwind')
option('runner',
type : 'feature',
description : 'Build test runner')
option('oping',
type : 'feature',
description : 'Build test runner with liboping for pinging support')
option('use_rpath',
type : 'boolean',
value : false,
description : 'Set runpath on installed executables for libigt.so')
option('srcdir',
type : 'string',
description : 'Override the source code path embedded inside target binaries (optional)')
|