From 0a01eb02aefca258e1b970d36fa04886eeb03d5d Mon Sep 17 00:00:00 2001 From: Simon McVittie Date: Fri, 28 Feb 2025 12:15:22 +0000 Subject: [PATCH] build: If GLib is a subproject, disable GObject-Introspection We don't need this and it will only slow down the build. Signed-off-by: Simon McVittie --- meson.build | 1 + 1 file changed, 1 insertion(+) diff --git a/meson.build b/meson.build index 19d842ce..3f4ad316 100644 --- a/meson.build +++ b/meson.build @@ -386,6 +386,7 @@ else required: get_option('modular_tests'), fallback: ['glib', 'libglib_dep'], default_options: fallback_subproject_options + [ + 'introspection=disabled', 'tests=false', ], )