aboutsummaryrefslogtreecommitdiff
path: root/meson.build
diff options
context:
space:
mode:
Diffstat (limited to 'meson.build')
-rw-r--r--meson.build27
1 files changed, 27 insertions, 0 deletions
diff --git a/meson.build b/meson.build
new file mode 100644
index 0000000..b8c1d8f
--- /dev/null
+++ b/meson.build
@@ -0,0 +1,27 @@
+project('assistant', 'c')
+
+gtk = dependency('gtk4')
+glib = dependency('glib-2.0')
+layer_shell = dependency('gtk4-layer-shell-0')
+libguile = dependency('guile-3.0')
+
+gnome = import('gnome')
+
+resources = gnome.compile_resources(
+ 'resources',
+ 'data/resources.xml',
+ source_dir: 'data',
+ c_name: 'resources'
+)
+
+executable(
+ 'assistant',
+ 'main.c',
+ resources,
+ dependencies: [
+ gtk,
+ glib,
+ layer_shell,
+ libguile,
+ ]
+) \ No newline at end of file