summaryrefslogtreecommitdiffstats
path: root/meson.build
diff options
context:
space:
mode:
Diffstat (limited to 'meson.build')
-rw-r--r--meson.build5
1 files changed, 4 insertions, 1 deletions
diff --git a/meson.build b/meson.build
index f5e724d..b07c672 100644
--- a/meson.build
+++ b/meson.build
@@ -4,9 +4,12 @@ lisiblestd_incdir = include_directories('src/')
lisiblestd_lib = library('lisiblestd',
'src/lisiblestd/log.c',
'src/lisiblestd/memory.c',
- 'src/lisiblestd/string.c'
+ 'src/lisiblestd/string.c',
+ 'src/lisiblestd/bytes.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])
test('test_string', test_string)
+test_bytes = executable('test_bytes', 'tests/test_runner.c', 'tests/bytes.c', dependencies: [lisiblestd_dep])
+test('test_bytes', test_bytes)
Go back to lisible.xyz