diff options
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) |