summaryrefslogtreecommitdiff
path: root/meson_options.txt
diff options
context:
space:
mode:
Diffstat (limited to 'meson_options.txt')
-rw-r--r--meson_options.txt24
1 files changed, 24 insertions, 0 deletions
diff --git a/meson_options.txt b/meson_options.txt
new file mode 100644
index 000000000..55f9cca01
--- /dev/null
+++ b/meson_options.txt
@@ -0,0 +1,24 @@
+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',
+ type: 'string',
+ value: 'none')
+option('with_docs',
+ description: 'Whether to generate the API reference (requires GTK-Doc)',
+ type: 'boolean',
+ value: false)