summaryrefslogtreecommitdiff
path: root/girepository/meson.build
diff options
context:
space:
mode:
authorChristoph Reiter <reiter.christoph@gmail.com>2020-07-14 15:51:14 +0000
committerChristoph Reiter <reiter.christoph@gmail.com>2020-07-14 15:51:14 +0000
commit9f9d8cefe966d260cf8c12971dcad40537adb5c6 (patch)
tree1d0eded74c6371848bde389ce7589bd23d65c565 /girepository/meson.build
parentbc8d3bc249e8eeff444e5fafac0d8821244fdb26 (diff)
parent89c81712570e98e5ee411275c0fa467a6b61e977 (diff)
downloadgobject-introspection-9f9d8cefe966d260cf8c12971dcad40537adb5c6.tar.gz
Merge branch 'patch-1' into 'master'
[Win32] Fix gi-dump-types.c to build on Windows See merge request GNOME/gobject-introspection!218
Diffstat (limited to 'girepository/meson.build')
-rw-r--r--girepository/meson.build4
1 files changed, 2 insertions, 2 deletions
diff --git a/girepository/meson.build b/girepository/meson.build
index 6cd8fd30..c8ef6aa9 100644
--- a/girepository/meson.build
+++ b/girepository/meson.build
@@ -204,7 +204,7 @@ gthash_test = executable('gthash-test', 'gthash-test.c',
test('gthash-test', gthash_test)
-if giounix_dep.found()
+if giounix_dep.found() or giowin_dep.found()
executable('gi-dump-types', 'gi-dump-types.c',
- dependencies: [girepo_dep, giounix_dep])
+ dependencies: [girepo_dep, giounix_dep, giowin_dep])
endif