summaryrefslogtreecommitdiffstats
path: root/meson.build
diff options
context:
space:
mode:
authorClement Sibille <clements+git@lisible.xyz>2024-05-20 00:52:17 +0900
committerClement Sibille <clements+git@lisible.xyz>2024-05-20 01:28:21 +0900
commit2d813cc4c26af142bcfaabdf654371e7801f6491 (patch)
treecbbf8cbb2af9554d7215e96a63fcc213d05c853a /meson.build
parentbd22b018c841cddf4eb8e1dae48eb14eef850523 (diff)
Add bytes module
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