blob: 766b96a8f4c3523377cf707f3d25cc69250589c2 (
plain)
1
2
3
4
5
6
7
8
|
project('pom', 'c',
# Note: Only C99 is strictly needed
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',
'tests/errors.c', link_with: [static_lib])
test('tests', tests)
|