2023-01-06 18:22:56 +00:00
|
|
|
test('table-printer', executable('table-printer',
|
|
|
|
[
|
|
|
|
'table-printer-test.c',
|
|
|
|
'../src/table-printer.c',
|
|
|
|
],
|
|
|
|
include_directories: inc,
|
|
|
|
dependencies: [ ],
|
|
|
|
))
|
|
|
|
test('option-parser', executable('option-parser',
|
2023-01-02 09:32:15 +00:00
|
|
|
[
|
|
|
|
'option-parser-test.c',
|
|
|
|
'../src/option-parser.c',
|
2023-01-06 18:22:56 +00:00
|
|
|
'../src/table-printer.c',
|
2023-01-02 09:32:15 +00:00
|
|
|
'../src/strlcpy.c',
|
|
|
|
],
|
|
|
|
include_directories: inc,
|
|
|
|
dependencies: [ ],
|
2023-01-06 18:22:56 +00:00
|
|
|
))
|