2020-09-05 16:02:16 -04:00
|
|
|
srcs += files('ftp.c', 'parse.c')
|
|
|
|
|
2022-11-21 13:09:50 -05:00
|
|
|
exe = executable('ftp-parser', 'ftp-parser.c', 'parse.c', meson.source_root()+'/src/protocol/date.c', testdeps, dependencies:[iconvdeps],
|
2022-10-07 13:01:19 -04:00
|
|
|
c_args:['-DHAVE_CONFIG_H'], cpp_args:['-DHAVE_CONFIG_H'], include_directories:['.','../..','../../..'],
|
|
|
|
build_by_default:false)
|
2020-09-05 16:02:16 -04:00
|
|
|
|
2022-10-05 12:36:28 -04:00
|
|
|
test_lib = environment({'TEST_LIB': meson.source_root()+'/test/libtest.sh'})
|
|
|
|
t = find_program('test-ftp-parser')
|
2022-10-07 13:01:19 -04:00
|
|
|
test('ftp-parser', t, depends:[exe], env:test_lib, workdir:meson.current_build_dir(), is_parallel:false)
|