diff options
author | 2020-03-19 21:45:02 +0200 | |
---|---|---|
committer | 2020-03-19 21:45:02 +0200 | |
commit | 8b4c2c3194dbf9b18ecf475597d257ee7125a1e1 (patch) | |
tree | 36004043636960008e413aa140c018b7dba1203e /meson.build | |
parent | 61c3a9aa7a636ada2cedd5b6025d5c7ccc598c85 (diff) | |
download | algos-ld1-8b4c2c3194dbf9b18ecf475597d257ee7125a1e1.tar.gz algos-ld1-8b4c2c3194dbf9b18ecf475597d257ee7125a1e1.tar.bz2 algos-ld1-8b4c2c3194dbf9b18ecf475597d257ee7125a1e1.zip |
we print error messages now, bois.
Diffstat (limited to 'meson.build')
-rw-r--r-- | meson.build | 4 |
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) |