| Alexander Hansen | 3a31f0a | 2025-11-03 12:52:37 +0100 | [diff] [blame] | 1 | |
| 2 | testcases = ['device'] | ||||
| 3 | |||||
| 4 | foreach 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 | ) | ||||
| 25 | endforeach | ||||
| 26 | |||||