summaryrefslogtreecommitdiff
path: root/examples/application3
diff options
context:
space:
mode:
authorTimm Bäder <mail@baedert.org>2016-09-24 09:38:10 +0200
committerEmmanuele Bassi <ebassi@gnome.org>2017-05-03 15:10:52 +0100
commit8ae847e4fcb10ba9731dc33ab65f9c1544c7379e (patch)
tree76f5ab878437629d8725cddc36bef282964b9bd7 /examples/application3
parent8bf141b364bbd59d77582644bb423c2d7683774a (diff)
downloadgtk+-8ae847e4fcb10ba9731dc33ab65f9c1544c7379e.tar.gz
Build examples
Diffstat (limited to 'examples/application3')
-rw-r--r--examples/application3/meson.build17
1 files changed, 17 insertions, 0 deletions
diff --git a/examples/application3/meson.build b/examples/application3/meson.build
new file mode 100644
index 0000000000..f0cec4c198
--- /dev/null
+++ b/examples/application3/meson.build
@@ -0,0 +1,17 @@
+
+app3_resources = gnome.compile_resources(
+ 'exampleapp3 resources',
+ 'exampleapp.gresource.xml',
+ source_dir: '.'
+)
+
+app3 = executable(
+ 'exampleapp3',
+ 'main.c',
+ 'exampleapp.c',
+ 'exampleapp.h',
+ 'exampleappwin.c',
+ 'exampleappwin.h',
+ app3_resources,
+ dependencies: libgtk_dep
+)