summaryrefslogtreecommitdiff
path: root/meson_options.txt
blob: 0006cd75cc74bca4b032687877c944f1db6039ba (plain)
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
option('enable_png',
       description: 'Enable PNG loader (requires libpng)',
       type: 'boolean',
       value: true)
option('enable_tiff',
       description: 'Enable TIFF loader (requires libtiff)',
       type: 'boolean',
       value: true)
option('enable_jpeg',
       description: 'Enable JPEG loader (requires libjpeg)',
       type: 'boolean',
       value: true)
option('enable_jasper',
       description: 'Enable JPEG2000 loader (requires libjasper)',
       type: 'boolean',
       value: false)
option('builtin_loaders',
       description: 'Comma-separated list of loaders to build into gdk-pixbuf, or "none"',
       type: 'string',
       value: 'none')
option('with_docs',
       description: 'Whether to generate the API reference (requires GTK-Doc)',
       type: 'boolean',
       value: false)
option('with_gir',
       description: 'Whether to generate the API introspection data (requires GObject-Introspection)',
       type: 'boolean',
       value: true)
option('with_man',
       description: 'Whether to generate man pages (requires xlstproc)',
       type: 'boolean',
       value: true)