Add meson.build for unit tests

pull/210/head
Andri Yngvason 2023-01-02 09:32:15 +00:00
parent 474ce23d42
commit 65ed029e22
1 changed files with 10 additions and 0 deletions

10
test/meson.build 100644
View File

@ -0,0 +1,10 @@
option_parser = executable('option-parser',
[
'option-parser-test.c',
'../src/option-parser.c',
'../src/strlcpy.c',
],
include_directories: inc,
dependencies: [ ],
)
test('option-parser', option_parser)