From f2b41e708daef6da222e10ea762a266a0eb91985 Mon Sep 17 00:00:00 2001
From: Benjamin Otte <otte@redhat.com>
Date: Mon, 7 Jun 2021 14:56:25 +0200
Subject: [PATCH] build: Build demos before tools

That's a sneaky trick so my edit/compile/test cycle goes faster:
I usually use demos for testing so the tools don't have to be linked for
me to start testing.
---
 meson.build | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meson.build b/meson.build
index 8cabfefe7d..49018b2e02 100644
--- a/meson.build
+++ b/meson.build
@@ -733,11 +733,11 @@ subdir('gtk/css')
 subdir('gdk')
 subdir('gsk')
 subdir('gtk')
-subdir('tools')
 subdir('modules')
 if get_option('demos')
   subdir('demos')
 endif
+subdir('tools')
 if get_option('build-tests')
   subdir('tests')
   subdir('testsuite')