summaryrefslogtreecommitdiff
path: root/meson.build
blob: ab5080b38ff23d36b4c976a0294055fdead1346d (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', 'tests/location.c', link_with: [static_lib])
test('tests', tests)