Blame meson_options.txt

Packit a4058c
option('enable_png',
Packit a4058c
       description: 'Enable PNG loader (requires libpng)',
Packit a4058c
       type: 'boolean',
Packit a4058c
       value: true)
Packit a4058c
option('enable_tiff',
Packit a4058c
       description: 'Enable TIFF loader (requires libtiff), disabled on Windows if "enable_native_windows_loaders" is used',
Packit a4058c
       type: 'boolean',
Packit a4058c
       value: true)
Packit a4058c
option('enable_jpeg',
Packit a4058c
       description: 'Enable JPEG loader (requires libjpeg), disabled on Windows if "enable_native_windows_loaders" is used',
Packit a4058c
       type: 'boolean',
Packit a4058c
       value: true)
Packit a4058c
option('enable_jasper',
Packit a4058c
       description: 'Enable JPEG2000 loader (requires libjasper)',
Packit a4058c
       type: 'boolean',
Packit a4058c
       value: false)
Packit a4058c
option('builtin_loaders',
Packit a4058c
       description: 'Comma-separated list of loaders to build into gdk-pixbuf, or "none", or "all" to build all buildable loaders into gdk-pixbuf',
Packit a4058c
       type: 'string',
Packit a4058c
       value: 'none')
Packit a4058c
option('with_docs',
Packit a4058c
       description: 'Whether to generate the API reference (requires GTK-Doc)',
Packit a4058c
       type: 'boolean',
Packit a4058c
       value: false)
Packit a4058c
option('with_gir',
Packit a4058c
       description: 'Whether to generate the API introspection data (requires GObject-Introspection)',
Packit a4058c
       type: 'boolean',
Packit a4058c
       value: true)
Packit a4058c
option('with_man',
Packit a4058c
       description: 'Whether to generate man pages (requires xlstproc)',
Packit a4058c
       type: 'boolean',
Packit a4058c
       value: true)
Packit a4058c
option('enable_relocatable',
Packit a4058c
       description: 'Whether to enable application bundle relocation support',
Packit a4058c
       type: 'boolean',
Packit a4058c
       value: false)
Packit a4058c
option('enable_native_windows_loaders',
Packit a4058c
       description: 'Use Windows system components to handle BMP, EMF, GIF, ICO, JPEG, TIFF and WMF images, overriding enable_jpeg and enable_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 a4058c
       type: 'boolean',
Packit a4058c
       value: false)