summaryrefslogtreecommitdiffstats
path: root/meson.build
diff options
context:
space:
mode:
authorClement Sibille <clements+git@lisible.xyz>2024-05-20 00:44:59 +0900
committerClement Sibille <clements+git@lisible.xyz>2024-05-20 01:28:21 +0900
commit817c1fd14c9b9b3fc93922f7ea06d9edfd53c63b (patch)
tree047b07b108a08c7dd0bd2f40bafa79bfb49dd9c4 /meson.build
parent399be44fbc3767e7c1ff505119f9e07ee25b1078 (diff)
Add log levels to log macros
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