summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/meson.build7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/meson.build b/src/meson.build
index 0407d7d..a3c2ad1 100644
--- a/src/meson.build
+++ b/src/meson.build
@@ -46,8 +46,13 @@ lib = shared_library('uca',
gnome.generate_gir(lib,
namespace: 'Uca',
nsversion: '@0@.0'.format(version_major),
- sources: sources,
+ sources: sources + headers,
install: true,
+ includes: [
+ 'GLib-2.0',
+ 'GObject-2.0',
+ 'GModule-2.0',
+ ],
)
pkg = import('pkgconfig')