diff options
| author | Nirbheek Chauhan <nirbheek@centricular.com> | 2016-09-23 14:39:11 +0530 |
|---|---|---|
| committer | Nirbheek Chauhan <nirbheek@centricular.com> | 2016-10-02 00:48:12 +0530 |
| commit | d3e73e0dbc28939953cc5c7e3f928e05557838a1 (patch) | |
| tree | 4f4f212c5babd52d9d54eb876d773325a7528378 | |
| parent | 9d1aeebc27c5077ede5f47463e66f184529c03f0 (diff) | |
| download | meson-d3e73e0dbc28939953cc5c7e3f928e05557838a1.tar.gz | |
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.build | 4 |
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 b4765b6ec..194760480 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) |
