diff options
author | Ted Gould <ted@gould.cx> | 2010-04-29 11:54:42 -0500 |
---|---|---|
committer | Ted Gould <ted@gould.cx> | 2010-04-29 11:54:42 -0500 |
commit | 3ef5fec331863cb0f079a109cd1eaa0410c40b09 (patch) | |
tree | 81f6922390ca8298d3b796856c232c439c6645c4 | |
parent | ba1fd3904b920d017b532a0e1ff2ba4941cdb47d (diff) | |
download | libayatana-appindicator-3ef5fec331863cb0f079a109cd1eaa0410c40b09.tar.gz libayatana-appindicator-3ef5fec331863cb0f079a109cd1eaa0410c40b09.tar.bz2 libayatana-appindicator-3ef5fec331863cb0f079a109cd1eaa0410c40b09.zip |
Building the GIR file
-rw-r--r-- | src/Makefile.am | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index d8599d8..a1d018b 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -142,3 +142,37 @@ BUILT_SOURCES += \ CLEANFILES += $(BUILT_SOURCES) EXTRA_DIST += $(DBUS_SPECS) + +######################### +# GObject Introsepction +######################### + +-include $(INTROSPECTION_MAKEFILE) +INTROSPECTION_GIRS = +INTROSPECTION_SCANNER_ARGS = --add-include-path=$(srcdir) +INTROSPECTION_COMPILER_ARGS = --includedir=$(builddir) + +if HAVE_INTROSPECTION + +introspection_sources = $(libappindicatorinclude_HEADERS) + +AppIndicator-0.1.gir: libappindicator.la +AppIndicator_0_1_gir_INCLUDES = \ + GObject-2.0 \ + Gtk-2.0 +AppIndicator_0_1_gir_CFLAGS = $(INDICATOR_CFLAGS) +AppIndicator_0_1_gir_LIBS = libappindicator.la +AppIndicator_0_1_gir_FILES = $(addprefix $(srcdir)/, $(introspection_sources)) + +INTROSPECTION_GIRS += AppIndicator-0.1.gir + +girdir = $(datadir)/gir-1.0 +gir_DATA = $(INTROSPECTION_GIRS) + +typelibdir = $(libdir)/girepository-1.0 +typelib_DATA = $(INTROSPECTION_GIRS:.gir=.typelib) + +CLEANFILES += $(gir_DATA) $(typelib_DATA) + +endif + |