blob: 5fafc31068e653cf0d983a46f41193e7b2fcd7f5 (
plain)
1
2
3
4
5
6
7
|
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', link_with: [static_lib])
test('tests', tests)
|