build: Add option to disable introspection
authorChun-wei Fan <fanchunwei@src.gnome.org>
Tue, 12 Sep 2017 04:19:37 +0000 (12:19 +0800)
committerChun-wei Fan <fanchunwei@src.gnome.org>
Wed, 13 Sep 2017 15:21:06 +0000 (23:21 +0800)
This adds an option to Meson builds to disable introspection builds even
when GObject-Introspection is installed.  Introspection is still enabled
by default.

https://bugzilla.gnome.org/show_bug.cgi?id=785802

atk/meson.build
meson_options.txt

index 95942e0..7b5a683 100644 (file)
@@ -137,7 +137,9 @@ libatk_dep = declare_dependency(link_with: libatk,
                                 dependencies: gobject_dep,
                                 sources: atk_enum_h)
 
-if not meson.is_cross_build()
+disable_introspection = get_option('disable_introspection')
+
+if not meson.is_cross_build() and not disable_introspection
   gnome.generate_gir(libatk,
                      sources: atk_sources + atk_headers + [ atk_enum_h ] + [ atk_version_h ],
                      namespace: 'Atk',
index 6c306f3..562a498 100644 (file)
@@ -2,3 +2,7 @@ option('enable_docs',
        description: 'Build API reference for ATK using GTK-Doc',
        type: 'boolean',
        value: false)
+option('disable_introspection',
+       description: 'Do not build introspection files, even when GObject-Introspection is found',
+       type: 'boolean',
+       value: false)