summaryrefslogtreecommitdiff
path: root/examples/application7
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/application7
parent8bf141b364bbd59d77582644bb423c2d7683774a (diff)
downloadgtk+-8ae847e4fcb10ba9731dc33ab65f9c1544c7379e.tar.gz
Build examples
Diffstat (limited to 'examples/application7')
-rw-r--r--examples/application7/meson.build23
1 files changed, 23 insertions, 0 deletions
diff --git a/examples/application7/meson.build b/examples/application7/meson.build
new file mode 100644
index 0000000000..cc32f36ad0
--- /dev/null
+++ b/examples/application7/meson.build
@@ -0,0 +1,23 @@
+
+app7_resources = gnome.compile_resources(
+ 'exampleapp7 resources',
+ 'exampleapp.gresource.xml',
+ source_dir: '.'
+)
+
+app7_schemas = gnome.compile_schemas()
+
+
+app7 = executable(
+ 'exampleapp7',
+ 'main.c',
+ 'exampleapp.c',
+ 'exampleapp.h',
+ 'exampleappwin.c',
+ 'exampleappwin.h',
+ 'exampleappprefs.c',
+ 'exampleappprefs.h',
+ app7_resources,
+ app7_schemas,
+ dependencies: libgtk_dep
+)