From 59941930f7a2506727cdcf68c4b36c2323a815b2 Mon Sep 17 00:00:00 2001 From: Patrick Griffis Date: Sun, 23 Jul 2023 19:30:30 -0500 Subject: [PATCH] build: Fix building with introspection disabled and testsuite enabled The headless tests are written in Python and need g-i. --- testsuite/meson.build | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/testsuite/meson.build b/testsuite/meson.build index d44b08a063..5ec1634e53 100644 --- a/testsuite/meson.build +++ b/testsuite/meson.build @@ -70,7 +70,9 @@ subdir('tools') subdir('reftests') if build_gir subdir('introspection') + + if wayland_enabled + subdir('headless') + endif endif -if wayland_enabled - subdir('headless') -endif + -- 2.30.2