diff options
author | Tim-Philipp Müller <tim@centricular.com> | 2017-03-12 20:13:10 +0000 |
---|---|---|
committer | Emmanuele Bassi <ebassi@gnome.org> | 2017-05-03 15:10:53 +0100 |
commit | 3ac88fa6b65ddb7223cd6f6f66fbf504a9401a50 (patch) | |
tree | 9b1e84476fdbb04554081e83b6f8d3e2bfcf4efc /examples/application5 | |
parent | d276cd47a5db26718f03b84ca3586a4fc5475f1b (diff) | |
download | gtk+-3ac88fa6b65ddb7223cd6f6f66fbf504a9401a50.tar.gz |
meson: examples: update
Mostly style changes. Don't create resource source files
with spaces in them, that's tempting our luck.
Diffstat (limited to 'examples/application5')
-rw-r--r-- | examples/application5/meson.build | 22 |
1 files changed, 5 insertions, 17 deletions
diff --git a/examples/application5/meson.build b/examples/application5/meson.build index f0fed1ca59..22d12cb477 100644 --- a/examples/application5/meson.build +++ b/examples/application5/meson.build @@ -1,21 +1,9 @@ - -app5_resources = gnome.compile_resources( - 'exampleapp5 resources', +app5_resources = gnome.compile_resources('exampleapp5_resources', 'exampleapp.gresource.xml', - source_dir: '.' -) + source_dir: '.') app5_schemas = gnome.compile_schemas() - -app5 = executable( - 'exampleapp5', - 'main.c', - 'exampleapp.c', - 'exampleapp.h', - 'exampleappwin.c', - 'exampleappwin.h', - app5_resources, - app5_schemas, - dependencies: libgtk_dep -) +executable('exampleapp5', + 'exampleapp.c', 'exampleappwin.c', 'main.c', app5_resources, app5_schemas, + dependencies: libgtk_dep) |