Alexander Hansen | 192bb5d | 2025-02-27 11:28:15 +0100 | [diff] [blame^] | 1 | libexampledevice = static_library( |
| 2 | 'example_device', |
| 3 | 'example_device.cpp', |
| 4 | include_directories: ['.', common_include], |
| 5 | dependencies: [pdi_dep, phosphor_logging_dep, sdbusplus_dep, libpldm_dep], |
| 6 | link_with: [software_common_lib], |
Alexander Hansen | aa30064 | 2025-02-04 15:51:52 +0100 | [diff] [blame] | 7 | ) |
| 8 | |
| 9 | executable( |
Alexander Hansen | 192bb5d | 2025-02-27 11:28:15 +0100 | [diff] [blame^] | 10 | 'example-code-updater', |
| 11 | 'example_updater_main.cpp', |
| 12 | include_directories: ['.', common_include], |
| 13 | dependencies: [pdi_dep, phosphor_logging_dep, sdbusplus_dep, libpldm_dep], |
| 14 | link_with: [libpldmutil, software_common_lib, libexampledevice], |
Alexander Hansen | aa30064 | 2025-02-04 15:51:52 +0100 | [diff] [blame] | 15 | ) |