blob: 519d110d83b0a7378b8935da1bc7a17d5432106e [file] [log] [blame]
Alexander Hansencc88baa2024-11-26 13:55:21 +01001
2testcases = [
3 'test_pldm_package_parser',
4]
5
6foreach t : testcases
7 test(
8 t,
9 executable(
10 t,
11 f'@t@.cpp',
12 include_directories: [
13 common_include,
14 ],
15 dependencies: [
16 libpldm_dep,
17 phosphor_logging_dep,
18 gtest,
19 ],
20 link_with: [
21 libpldmutil,
22 libpldmcreatepkg,
23 ]
24 )
25 )
26endforeach
27