summaryrefslogtreecommitdiff
path: root/meson.build
diff options
context:
space:
mode:
authorpommicket <pommicket@gmail.com>2025-09-15 14:06:17 -0400
committerpommicket <pommicket@gmail.com>2025-09-15 14:06:17 -0400
commit4f2644f354184d5febc1aa8f37e987eca03f7f25 (patch)
tree9f35a24eee9c46ddbc14c59909b4d5b1dfad0e62 /meson.build
parentee88497b4451225c3140f56d98ebcbc166175407 (diff)
More tests; fix locations
Diffstat (limited to 'meson.build')
-rw-r--r--meson.build2
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)