1option( 2 'fuzz', 3 type: 'feature', 4 value: 'enabled', 5 description: 'Build fuzz targets', 6) 7option('tests', type: 'feature', value: 'enabled', description: 'Build tests') 8option( 9 'utility', 10 type: 'feature', 11 value: 'enabled', 12 description: 'Compile CLI utilities', 13) 14option( 15 'python', 16 type: 'feature', 17 value: 'disabled', 18 description: 'Build python extensions', 19) 20option('install', type: 'feature', value: 'enabled', description: 'Install') 21option( 22 'pkgconfig', 23 type: 'feature', 24 value: 'enabled', 25 description: 'Install pkgconfig', 26) 27option( 28 'output-all-properties', 29 type: 'feature', 30 value: 'disabled', 31 description: 'Force enabling of all CPER to IR properties for debugging', 32) 33