Graphene is a dependency of Gsk, not Gdk

So let's put it in the right place when building the introspection data.
This commit is contained in:
Emmanuele Bassi 2021-02-03 14:05:27 +00:00
parent 9efaa0b51d
commit 592b33cb48

View File

@ -1142,12 +1142,6 @@ if build_gir
# the installed one
gdk_gir_inc = [ 'cairo-1.0', 'Gio-2.0', ]
if graphene_dep.type_name() == 'internal'
gdk_gir_inc += subproject('graphene').get_variable('graphene_gir').get(0)
else
gdk_gir_inc += 'Graphene-1.0'
endif
if pixbuf_dep.type_name() == 'internal'
gdk_gir_inc += subproject('gdk-pixbuf').get_variable('gdkpixbuf_gir').get(0)
else
@ -1211,6 +1205,12 @@ if build_gir
gsk_gir_inc = [ gdk_gir[0] ]
if graphene_dep.type_name() == 'internal'
gsk_gir_inc += subproject('graphene').get_variable('graphene_gir').get(0)
else
gsk_gir_inc += 'Graphene-1.0'
endif
gsk_gir = gnome.generate_gir(libgtk,
sources: gsk_public_headers + gsk_public_sources + [ gskenum_h ],
namespace: 'Gsk',