summaryrefslogtreecommitdiffstats
path: root/meson.build
diff options
context:
space:
mode:
Diffstat (limited to 'meson.build')
-rw-r--r--meson.build4
1 files changed, 3 insertions, 1 deletions
diff --git a/meson.build b/meson.build
index 3d101a4..4718a70 100644
--- a/meson.build
+++ b/meson.build
@@ -2,6 +2,8 @@ project('usurpation', 'c',
license : 'LGPL2.1',
default_options : ['c_std=gnu11', 'buildtype=release', 'warning_level=2'])
+deps = [dependency('rin', version : '>= 0.0.4')]
+
progname = 'alg'
add_project_arguments('-D', '_GNU_SOURCE', language : 'c')
@@ -9,4 +11,4 @@ add_project_arguments('-fplan9-extensions', language : 'c')
subdir('src')
-executable(progname, sources, install : true)
+executable(progname, sources, dependencies : deps, install : true)