blob: 7d0a077058db370f984c2c0425141725d63cc9da [file] [log] [blame]
Alexander Hansen8ec69e42025-07-18 15:07:49 +02001
2testcases = ['software_get_random_softwareid']
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