Blame meson_options.txt

Packit 979760
option('png',
Packit 979760
       description: 'Enable PNG loader (requires libpng)',
Packit 979760
       type: 'boolean',
Packit 979760
       value: true)
Packit 979760
option('tiff',
Packit 979760
       description: 'Enable TIFF loader (requires libtiff), disabled on Windows if "native_windows_loaders" is used',
Packit 979760
       type: 'boolean',
Packit 979760
       value: true)
Packit 979760
option('jpeg',
Packit 979760
       description: 'Enable JPEG loader (requires libjpeg), disabled on Windows if "native_windows_loaders" is used',
Packit 979760
       type: 'boolean',
Packit 979760
       value: true)
Packit 979760
option('jasper',
Packit 979760
       description: 'Enable JPEG2000 loader (requires libjasper)',
Packit 979760
       type: 'boolean',
Packit 979760
       value: false)
Packit 979760
option('x11',
Packit 979760
       description: 'Enable X11 support (requires libX11)',
Packit 979760
       type: 'boolean',
Packit 979760
       value: true)
Packit 979760
option('builtin_loaders',
Packit 979760
       description: 'Comma-separated list of loaders to build into gdk-pixbuf, or "none", or "all" to build all buildable loaders into gdk-pixbuf',
Packit 979760
       type: 'string',
Packit 979760
       value: 'none')
Packit 979760
option('docs',
Packit 979760
       description: 'Whether to generate the API reference (requires GTK-Doc)',
Packit 979760
       type: 'boolean',
Packit 979760
       value: false)
Packit 979760
option('gir',
Packit 979760
       description: 'Whether to generate the API introspection data (requires GObject-Introspection)',
Packit 979760
       type: 'boolean',
Packit 979760
       value: true)
Packit 979760
option('man',
Packit 979760
       description: 'Whether to generate man pages (requires xlstproc)',
Packit 979760
       type: 'boolean',
Packit 979760
       value: true)
Packit 979760
option('relocatable',
Packit 979760
       description: 'Whether to enable application bundle relocation support',
Packit 979760
       type: 'boolean',
Packit 979760
       value: false)
Packit 979760
option('native_windows_loaders',
Packit 979760
       description: 'Use Windows system components to handle BMP, EMF, GIF, ICO, JPEG, TIFF and WMF images, overriding jpeg and tiff.  To build this into gdk-pixbuf, pass in windows" with the other loaders to build in or use "all" with the builtin_loaders option',
Packit 979760
       type: 'boolean',
Packit 979760
       value: false)