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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
|
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('testplan',
type : 'feature',
description : 'Build testplan documentation pages in ReST and html')
option('sphinx',
type : 'feature',
value : 'disabled',
description : 'Build testplan documentation using Sphinx')
option('docs',
type : 'feature',
description : 'Build documentation')
option('tests',
type : 'feature',
description : 'Build tests')
option('xe_driver',
type : 'feature',
value : 'enabled',
description : 'Build tests for Xe driver')
option('xe_eudebug',
type : 'feature',
value : 'disabled',
description : 'Build library and tests for Xe EU debugger')
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('version_hash',
type : 'string',
description : 'Override the Git commit hash embedded in the binaries')
option('srcdir',
type : 'string',
description : 'Override the source code path embedded inside target binaries (optional)')
|