diff options
author | Timm Bäder <mail@baedert.org> | 2016-09-24 09:38:10 +0200 |
---|---|---|
committer | Emmanuele Bassi <ebassi@gnome.org> | 2017-05-03 15:10:52 +0100 |
commit | 8ae847e4fcb10ba9731dc33ab65f9c1544c7379e (patch) | |
tree | 76f5ab878437629d8725cddc36bef282964b9bd7 /examples/application4 | |
parent | 8bf141b364bbd59d77582644bb423c2d7683774a (diff) | |
download | gtk+-8ae847e4fcb10ba9731dc33ab65f9c1544c7379e.tar.gz |
Build examples
Diffstat (limited to 'examples/application4')
-rw-r--r-- | examples/application4/meson.build | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/examples/application4/meson.build b/examples/application4/meson.build new file mode 100644 index 0000000000..2ae18200b2 --- /dev/null +++ b/examples/application4/meson.build @@ -0,0 +1,17 @@ + +app4_resources = gnome.compile_resources( + 'exampleapp4 resources', + 'exampleapp.gresource.xml', + source_dir: '.' +) + +app4 = executable( + 'exampleapp4', + 'main.c', + 'exampleapp.c', + 'exampleapp.h', + 'exampleappwin.c', + 'exampleappwin.h', + app4_resources, + dependencies: libgtk_dep +) |