blob: fa295070aa435d3b93f626c9d091f159e46906a1 [file] [log] [blame]
Alexander Hansencc88baa2024-11-26 13:55:21 +01001subdir('pldm')
Alexander Hansen8d9e6da2025-01-14 14:17:19 +01002subdir('nopdevice')
3subdir('device')
4subdir('software')
5
6testcases = [
7 'test_device_config',
8 'test_software_update',
9]
10
11foreach t : testcases
12 test(
13 t,
14 executable(
15 t,
16 f'@t@.cpp',
17 include_directories: [
18 common_include,
19 ],
20 dependencies: [
21 libpldm_dep,
22 sdbusplus_dep,
23 phosphor_logging_dep,
24 gtest_main,
25 ],
26 link_with: [
27 libpldmutil,
28 libpldmcreatepkg,
29 software_common_lib,
30 libnopdevice,
31 ]
32 )
33 )
34endforeach