diff options
Diffstat (limited to 'meson.build')
-rw-r--r-- | meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meson.build b/meson.build index 766b96a..ab5080b 100644 --- a/meson.build +++ b/meson.build @@ -4,5 +4,5 @@ project('pom', 'c', library('pom', 'pom.c') static_lib = static_library('pom', 'pom.c') tests = executable('tests', 'tests/main.c', 'tests/parsing.c', - 'tests/errors.c', link_with: [static_lib]) + 'tests/errors.c', 'tests/location.c', link_with: [static_lib]) test('tests', tests) |