1
1
mirror of https://gitlab.gnome.org/GNOME/gimp.git synced 2025-10-06 01:12:40 +02:00

libgimp*: move GObject Introspection into libgimp/.

libgimp is anyway processed at the very end after all other libgimp*
were built. This way, it also fixes #3746, by removing the $(top_srcdir)
everywhere from introspected files, hence making the build work again
with older automake.
This commit is contained in:
Jehan
2019-08-08 13:32:37 +02:00
parent 16cd3014c8
commit 2dde79b3e7
10 changed files with 481 additions and 474 deletions

View File

@@ -1,11 +1,11 @@
# Introspectable sources for libgimpmath
#
libgimpmath_introspectable_headers = \
$(top_srcdir)/libgimpmath/gimpmathtypes.h \
$(top_srcdir)/libgimpmath/gimpmatrix.h \
$(top_srcdir)/libgimpmath/gimpvector.h
../libgimpmath/gimpmathtypes.h \
../libgimpmath/gimpmatrix.h \
../libgimpmath/gimpvector.h
libgimpmath_introspectable = \
$(top_srcdir)/libgimpmath/gimpmatrix.c \
$(top_srcdir)/libgimpmath/gimpvector.c \
../libgimpmath/gimpmatrix.c \
../libgimpmath/gimpvector.c \
$(libgimpmath_introspectable_headers)