diff options
author | pommicket <pommicket@gmail.com> | 2025-09-15 13:52:32 -0400 |
---|---|---|
committer | pommicket <pommicket@gmail.com> | 2025-09-15 13:52:32 -0400 |
commit | ee88497b4451225c3140f56d98ebcbc166175407 (patch) | |
tree | 39cd720c4840c2872fb065088b91658ef6d8d3d1 /meson.build | |
parent | 969bf523b7039c7038b66edde5776278c27941ac (diff) |
Errors tests; fix some non-errors
Diffstat (limited to 'meson.build')
-rw-r--r-- | meson.build | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/meson.build b/meson.build index 5fafc31..766b96a 100644 --- a/meson.build +++ b/meson.build @@ -3,5 +3,6 @@ project('pom', 'c', default_options: ['c_std=c23']) library('pom', 'pom.c') static_lib = static_library('pom', 'pom.c') -tests = executable('tests', 'tests/main.c', 'tests/parsing.c', link_with: [static_lib]) +tests = executable('tests', 'tests/main.c', 'tests/parsing.c', + 'tests/errors.c', link_with: [static_lib]) test('tests', tests) |