summaryrefslogtreecommitdiff
path: root/meson_options.txt
diff options
context:
space:
mode:
Diffstat (limited to 'meson_options.txt')
-rw-r--r--meson_options.txt12
1 files changed, 6 insertions, 6 deletions
diff --git a/meson_options.txt b/meson_options.txt
index 0ee6718bf..c12179c5e 100644
--- a/meson_options.txt
+++ b/meson_options.txt
@@ -1,15 +1,15 @@
option('png',
description: 'Enable PNG loader (requires libpng)',
- type: 'boolean',
- value: true)
+ type: 'feature',
+ value: 'enabled')
option('tiff',
description: 'Enable TIFF loader (requires libtiff), disabled on Windows if "native_windows_loaders" is used',
- type: 'boolean',
- value: true)
+ type: 'feature',
+ value: 'auto')
option('jpeg',
description: 'Enable JPEG loader (requires libjpeg), disabled on Windows if "native_windows_loaders" is used',
- type: 'boolean',
- value: true)
+ type: 'feature',
+ value: 'enabled')
option('builtin_loaders',
description: 'Comma-separated list of loaders to build into gdk-pixbuf',
type: 'array',