From afa84e88c77d1b040e332b5716829c3d614f7398 Mon Sep 17 00:00:00 2001 From: Lleyton Gray Date: Fri, 25 Aug 2023 00:15:52 -0700 Subject: [PATCH] fix: move blp subproject call to top level, to fix compile bug --- demo/meson.build | 1 - meson.build | 1 + 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/demo/meson.build b/demo/meson.build index 9532d3f1..b7431278 100644 --- a/demo/meson.build +++ b/demo/meson.build @@ -1,5 +1,4 @@ subdir('data') -subproject('blueprint-compiler', required: false) conf = configuration_data() conf.set_quoted('APP_ID', 'com.fyralabs.Helium1.Demo') diff --git a/meson.build b/meson.build index 4c7a8fa8..9106b570 100644 --- a/meson.build +++ b/meson.build @@ -85,6 +85,7 @@ hgresource = gnome.compile_resources( subdir('lib') if get_option('demo') + subproject('blueprint-compiler', required: false) subdir('demo') endif