blob: 0cd3b350d9946d4b3462853b4e5bfa687337a4c6 [file] [log] [blame]
Petri Latvala0e98bf62018-06-21 14:06:25 +03001option('build_overlay',
2 type : 'combo',
3 value : 'auto',
4 choices : ['auto', 'true', 'false'],
5 description : 'Build overlay')
6
7option('overlay_backends',
8 type : 'array',
9 value : ['auto'],
10 choices : [ 'auto', 'x', 'xv' ],
11 description : 'Overlay backends to enable')
12
13option('build_audio',
14 type : 'combo',
15 value : 'auto',
16 choices : ['auto', 'true', 'false'],
17 description : 'Build audio test')
18
19option('build_chamelium',
20 type : 'combo',
21 value : 'auto',
22 choices : ['auto', 'true', 'false'],
23 description : 'Build chamelium test')
24
25option('with_valgrind',
26 type : 'combo',
27 value : 'auto',
28 choices : ['auto', 'true', 'false'],
29 description : 'Build with support for valgrind annotations')
30
31option('build_man',
32 type : 'combo',
33 value : 'auto',
34 choices : ['auto', 'true', 'false'],
35 description : 'Build man pages')
36
37option('build_docs',
38 type : 'combo',
39 value : 'auto',
40 choices : ['auto', 'true', 'false'],
41 description : 'Build documentation')
42
43option('build_tests',
44 type : 'combo',
45 value : 'auto',
46 choices : ['auto', 'true', 'false'],
47 description : 'Build tests')
48
49option('with_libdrm',
50 type : 'array',
51 value : ['auto'],
52 choices : ['', 'auto', 'intel', 'nouveau', 'amdgpu'],
53 description : 'libdrm libraries to be used')
54
Daniel Vetter2908e4c2018-10-30 13:22:12 +010055option('with_libunwind',
56 type : 'combo',
57 value : 'auto',
58 choices : ['auto', 'true', 'false'],
59 description : 'Use libunwind')
60
Petri Latvala18c1e752018-08-08 14:07:00 +030061option('build_runner',
62 type : 'combo',
63 value : 'auto',
64 choices : ['auto', 'true', 'false'],
65 description : 'Build test runner')
66
Petri Latvalaadd82162018-01-19 13:44:07 +020067option('use_rpath',
68 type : 'boolean',
69 value : false,
70 description : 'Set runpath on installed executables for libigt.so')