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/application1 | |
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/application1')
-rw-r--r-- | examples/application1/meson.build | 14 |
1 files changed, 3 insertions, 11 deletions
diff --git a/examples/application1/meson.build b/examples/application1/meson.build index ae5620f07e..172c1d3b1c 100644 --- a/examples/application1/meson.build +++ b/examples/application1/meson.build @@ -1,11 +1,3 @@ - - -app1 = executable( - 'exampleapp', - 'main.c', - 'exampleapp.c', - 'exampleapp.h', - 'exampleappwin.c', - 'exampleappwin.h', - dependencies: libgtk_dep -) +executable('exampleapp', + 'exampleapp.c', 'exampleappwin.c', 'main.c', + dependencies: libgtk_dep) |