summaryrefslogtreecommitdiffstats
path: root/meson.build
diff options
context:
space:
mode:
Diffstat (limited to 'meson.build')
-rw-r--r--meson.build6
1 files changed, 5 insertions, 1 deletions
diff --git a/meson.build b/meson.build
index da667ce..f5e724d 100644
--- a/meson.build
+++ b/meson.build
@@ -1,7 +1,11 @@
project('lisiblestd', 'c', default_options: ['c_std=c18', 'warning_level=3'])
lisiblestd_incdir = include_directories('src/')
-lisiblestd_lib = library('lisiblestd', 'src/lisiblestd/memory.c', 'src/lisiblestd/string.c')
+lisiblestd_lib = library('lisiblestd',
+ 'src/lisiblestd/log.c',
+ 'src/lisiblestd/memory.c',
+ 'src/lisiblestd/string.c'
+)
lisiblestd_dep = declare_dependency(include_directories: lisiblestd_incdir, link_with: [lisiblestd_lib])
test_string = executable('test_string', 'tests/test_runner.c', 'tests/string.c', dependencies: [lisiblestd_dep])
Go back to lisible.xyz