babl: fix some annotation to make the function usable in bindings.
[babl.git] / meson_options.txt
blobf9d558c11d6d7efebdf44cb87ef8ce835ae1fb10
1 # Optional features
2 option('with-docs',
3   type: 'combo',
4   choices: ['auto', 'true', 'false'],
5   description: 'build documentation'
7 option('enable-gir',
8   type: 'combo',
9   choices: ['auto', 'true', 'false'],
10   description: 'gobject introspection .gir generation'
12 option('enable-vapi',
13   type: 'boolean',
14   value: 'true', 
15   description: 'Vala .vapi generation - depends on introspection'
17 option('gi-docgen',
18   type: 'feature',
19   value: 'auto',
20   description: 'Build developer documentation (uses gi-docgen)'
23 # Compiler extensions
24 option('enable-mmx',
25   type: 'boolean', 
26   value: 'true', 
27   description: 'MMX support - disables all compiler extensons'
29 option('enable-sse',
30   type: 'boolean',
31   value: 'true',
32   description: 'SSE support - depends on MMX'
34 option('enable-sse2',
35   type: 'boolean',
36   value: 'true',
37   description: 'SSE2 support - depends on SSE'
39 option('enable-sse4_1',
40   type: 'boolean',
41   value: 'true',
42   description: 'SSE4.1 support - depends on SSE2'
44 option('enable-avx2',
45   type: 'boolean',
46   value: 'true',
47   description: 'AVX2 support - depends on SSE4.1'
49 option('enable-f16c',
50   type: 'boolean',
51   value: 'true',
52   description: 'Hardware half-float support - depends on SSE'
55 # Optional dependencies
56 option('with-lcms',
57   type: 'boolean',
58   value: 'true', 
59   description: 'build with lcms'