summaryrefslogtreecommitdiff
path: root/meson.build
diff options
context:
space:
mode:
authorNirbheek Chauhan <nirbheek@centricular.com>2017-11-28 18:04:46 +0530
committerNirbheek Chauhan <nirbheek@centricular.com>2018-03-10 19:05:19 +0530
commit7c98ef9c86f5b04eb753cca9bbe60e5cfd7c0cc8 (patch)
tree7e5bc31b6771bbc0ab364fd94e6808f47909066f /meson.build
parent3adde9ea4015de7d38490134f37c2ba07bc4133c (diff)
downloadgobject-introspection-7c98ef9c86f5b04eb753cca9bbe60e5cfd7c0cc8.tar.gz
meson: Remove gir_build hack option
gir generation now works in-tree, so we do not need to bootstrap g-i by installing to a prefix first.
Diffstat (limited to 'meson.build')
-rw-r--r--meson.build8
1 files changed, 2 insertions, 6 deletions
diff --git a/meson.build b/meson.build
index acb4c8e9..244897c4 100644
--- a/meson.build
+++ b/meson.build
@@ -64,17 +64,13 @@ giounix_dep = dependency('gio-unix-2.0', version : glib_version,
libffi_dep = dependency('libffi',
fallback : ['libffi', 'ffi_dep'])
-gir_build = get_option('gir_build')
subdir('girepository')
subdir('tools')
subdir('giscanner')
-if gir_build
- ### To do in a second time
- subdir('gir')
-endif
+subdir('gir')
subdir('examples')
subdir('docs')
-### Missing meson.build file
+### TODO
### subdir('tests')
install_data('Makefile.introspection', install_dir: join_paths(get_option('datadir'), 'gobject-introspection-1.0'))