From 311367620ac98ca141d904252ad98b0f3524a991 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marco=20Trevisan=20=28Trevi=C3=B1o=29?= Date: Fri, 10 May 2024 17:22:56 +0200 Subject: [PATCH] girepository/build: Actually use our compiler to generate GLib typelibs We are overriding the default g-ir-compiler for local usage, but this is not actually happen since that's computed while parsing introspection So generate the compiler as first thing, then in case handle the introspection data --- girepository/meson.build | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/girepository/meson.build b/girepository/meson.build index 3a17cf5c8..fa0adc631 100644 --- a/girepository/meson.build +++ b/girepository/meson.build @@ -240,6 +240,8 @@ pkg.generate(libgirepository, libraries: [libglib_dep, libgobject_dep], ) +subdir('compiler') + if enable_gir subdir('introspection') endif @@ -248,6 +250,5 @@ if build_tests subdir('tests') endif -subdir('compiler') subdir('decompiler') -subdir('inspector') \ No newline at end of file +subdir('inspector')