blob: 314618a42fda91ada6fef7b6e78d01fea279b7ce [file] [log] [blame]
Alexander Hansen3a31f0a2025-11-03 12:52:37 +01001
2testcases = ['device']
3
4foreach t : testcases
5 test(
6 t,
7 executable(
8 t,
9 f'@t@.cpp',
10 include_directories: [common_include],
11 dependencies: [
12 libpldm_dep,
13 sdbusplus_dep,
14 phosphor_logging_dep,
15 gtest,
16 ],
17 link_with: [
18 libpldmutil,
19 libpldmcreatepkg,
20 software_common_lib,
21 libexampledevice,
22 ],
23 ),
24 )
25endforeach
26