summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
Diffstat (limited to 'examples')
-rw-r--r--examples/hello/hello-world.c (renamed from examples/hello-world.c)0
-rw-r--r--examples/hello/meson.build10
-rw-r--r--examples/meson.build1
3 files changed, 10 insertions, 1 deletions
diff --git a/examples/hello-world.c b/examples/hello/hello-world.c
index f4c058e978..f4c058e978 100644
--- a/examples/hello-world.c
+++ b/examples/hello/hello-world.c
diff --git a/examples/hello/meson.build b/examples/hello/meson.build
new file mode 100644
index 0000000000..bd4cdd51e7
--- /dev/null
+++ b/examples/hello/meson.build
@@ -0,0 +1,10 @@
+project('hello', 'c',
+ version: '4.3.0',
+ meson_version: '>= 0.50.0',
+)
+
+executable('hello',
+ [ 'hello-world.c' ],
+ dependencies: [ dependency('gtk4') ],
+ install: false
+)
diff --git a/examples/meson.build b/examples/meson.build
index 22e74f34d4..ae007bc404 100644
--- a/examples/meson.build
+++ b/examples/meson.build
@@ -2,7 +2,6 @@ examples = [
'builder',
'drawing',
'grid-packing',
- 'hello-world',
'plugman',
'search-bar',
'sunny',