1option('overlay', 2 type : 'feature', 3 description : 'Build overlay tool') 4 5option('overlay_backends', 6 type : 'array', 7 value : ['auto'], 8 choices : [ 'auto', 'x', 'xv' ], 9 description : 'Overlay backends to enable') 10 11option('chamelium', 12 type : 'feature', 13 description : 'Build Chamelium test') 14 15option('valgrind', 16 type : 'feature', 17 description : 'Build with support for valgrind annotations') 18 19option('man', 20 type : 'feature', 21 description : 'Build man pages') 22 23option('docs', 24 type : 'feature', 25 description : 'Build documentation') 26 27option('tests', 28 type : 'feature', 29 description : 'Build tests') 30 31option('libdrm_drivers', 32 type : 'array', 33 value : ['auto'], 34 choices : ['', 'auto', 'intel', 'nouveau', 'amdgpu'], 35 description : 'libdrm libraries to be used') 36 37option('libunwind', 38 type : 'feature', 39 description : 'Use libunwind') 40 41option('runner', 42 type : 'feature', 43 description : 'Build test runner') 44 45option('use_rpath', 46 type : 'boolean', 47 value : false, 48 description : 'Set runpath on installed executables for libigt.so') 49