diff options
Diffstat (limited to 'examples/application3/meson.build')
-rw-r--r-- | examples/application3/meson.build | 20 |
1 files changed, 5 insertions, 15 deletions
diff --git a/examples/application3/meson.build b/examples/application3/meson.build index f0cec4c198..ce90523d46 100644 --- a/examples/application3/meson.build +++ b/examples/application3/meson.build @@ -1,17 +1,7 @@ - -app3_resources = gnome.compile_resources( - 'exampleapp3 resources', +app3_resources = gnome.compile_resources('exampleapp3_resources', 'exampleapp.gresource.xml', - source_dir: '.' -) + source_dir: '.') -app3 = executable( - 'exampleapp3', - 'main.c', - 'exampleapp.c', - 'exampleapp.h', - 'exampleappwin.c', - 'exampleappwin.h', - app3_resources, - dependencies: libgtk_dep -) +executable('exampleapp3', + 'exampleapp.c', 'exampleappwin.c', 'main.c', app3_resources, + dependencies: libgtk_dep) |