aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNirbheek Chauhan <nirbheek@centricular.com>2016-09-23 14:39:11 +0530
committerNirbheek Chauhan <nirbheek@centricular.com>2016-10-02 00:48:12 +0530
commitd3e73e0dbc28939953cc5c7e3f928e05557838a1 (patch)
tree4f4f212c5babd52d9d54eb876d773325a7528378
parent9d1aeebc27c5077ede5f47463e66f184529c03f0 (diff)
downloadmeson-d3e73e0dbc28939953cc5c7e3f928e05557838a1.zip
meson-d3e73e0dbc28939953cc5c7e3f928e05557838a1.tar.gz
meson-d3e73e0dbc28939953cc5c7e3f928e05557838a1.tar.bz2
tests/7 gnome: Add a dependency on the compiled schemas
The executable needs to pull in the compiled schemas or they won't be compiled.
-rw-r--r--test cases/frameworks/7 gnome/schemas/meson.build4
1 files changed, 2 insertions, 2 deletions
diff --git a/test cases/frameworks/7 gnome/schemas/meson.build b/test cases/frameworks/7 gnome/schemas/meson.build
index b4765b6..1947604 100644
--- a/test cases/frameworks/7 gnome/schemas/meson.build
+++ b/test cases/frameworks/7 gnome/schemas/meson.build
@@ -1,8 +1,8 @@
-gnome.compile_schemas()
+compiled = gnome.compile_schemas()
install_data('com.github.meson.gschema.xml',
install_dir : 'share/glib-2.0/schemas')
-schemaexe = executable('schemaprog', 'schemaprog.c',
+schemaexe = executable('schemaprog', 'schemaprog.c', compiled,
dependencies : gio)
test('schema test', schemaexe)