Alexander Hansen | 1ba6e1c | 2024-11-26 11:16:44 +0100 | [diff] [blame^] | 1 | |
| 2 | bios_spi_src = files( |
| 3 | 'spi_device.cpp', |
| 4 | 'spi_device_code_updater.cpp' |
| 5 | ) |
| 6 | |
| 7 | bios_spi_include = include_directories('.') |
| 8 | |
| 9 | executable( |
| 10 | 'phosphor-fw-update-bios', |
| 11 | 'main.cpp', |
| 12 | bios_spi_src, |
| 13 | include_directories: [ |
| 14 | common_include, |
| 15 | bios_spi_include, |
| 16 | ], |
| 17 | dependencies: [ |
| 18 | sdbusplus_dep, |
| 19 | phosphor_logging_dep, |
| 20 | pdi_dep, |
| 21 | boost_dep, |
| 22 | libgpiod, |
| 23 | libpldm_dep, |
| 24 | ], |
| 25 | link_with: [libpldmutil, software_common_lib], |
| 26 | install: true |
| 27 | ) |