summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEmmanuele Bassi <ebassi@gnome.org>2018-04-25 16:34:51 +0100
committerEmmanuele Bassi <ebassi@gnome.org>2018-04-25 16:36:24 +0100
commite9b4c41b130998b3c9a3f34b8f64122cc91c6718 (patch)
tree1bcb31812c7af74ed93ca48e48356cbbd01a8fae
parent67152e533f8cea3788b667eda42bd1f80bbe5ef5 (diff)
downloadgdk-pixbuf-e9b4c41b130998b3c9a3f34b8f64122cc91c6718.tar.gz
meson: Install the marshalers header
The generated marshalers are public API, and the header needs to be installed, even though nobody should be using them. https://bugzilla.gnome.org/show_bug.cgi?id=795213
-rw-r--r--gdk-pixbuf/meson.build4
1 files changed, 3 insertions, 1 deletions
diff --git a/gdk-pixbuf/meson.build b/gdk-pixbuf/meson.build
index 58d54f7b2..66946b9af 100644
--- a/gdk-pixbuf/meson.build
+++ b/gdk-pixbuf/meson.build
@@ -84,7 +84,9 @@ gdkpixbuf_sources = [
gdkpixbuf_marshals = gnome.genmarshal('gdk-pixbuf-marshal',
sources: 'gdk-pixbuf-marshal.list',
- prefix: '_gdk_pixbuf_marshal')
+ prefix: '_gdk_pixbuf_marshal',
+ install_header: true,
+ install_dir: join_paths(gdk_pixbuf_includedir, gdk_pixbuf_api_path))
gdkpixbuf_enums = gnome.mkenums('gdk-pixbuf-enum-types',
sources: gdkpixbuf_headers,