Jim Wright | 539b608 | 2021-08-02 14:50:23 -0500 | [diff] [blame] | 1 | phosphor_power_sequencer_include_directories = include_directories( |
| 2 | '.', |
| 3 | '../..' |
Jim Wright | 1553cd9 | 2021-03-31 16:11:59 -0500 | [diff] [blame] | 4 | ) |
| 5 | |
Jim Wright | 539b608 | 2021-08-02 14:50:23 -0500 | [diff] [blame] | 6 | phosphor_power_sequencer = executable( |
| 7 | 'phosphor-power-control', |
| 8 | 'power_control_main.cpp', |
| 9 | 'power_control.cpp', |
Jim Wright | 1992083 | 2021-08-25 11:13:56 -0500 | [diff] [blame] | 10 | 'power_interface.cpp', |
Jim Wright | 930458c | 2022-01-24 14:37:27 -0600 | [diff] [blame] | 11 | 'power_sequencer_monitor.cpp', |
Jim Wright | c48551a | 2022-12-22 15:43:14 -0600 | [diff] [blame] | 12 | 'ucd90x_monitor.cpp', |
| 13 | 'ucd90160_monitor.cpp', |
Jim Wright | 7945dd2 | 2021-04-06 16:55:15 -0500 | [diff] [blame] | 14 | 'ucd90320_monitor.cpp', |
Jim Wright | 539b608 | 2021-08-02 14:50:23 -0500 | [diff] [blame] | 15 | dependencies: [ |
Jim Wright | 7a5dd99 | 2021-08-31 16:56:52 -0500 | [diff] [blame] | 16 | libgpiodcxx, |
Patrick Williams | 888bebd | 2023-05-31 19:19:49 -0500 | [diff] [blame] | 17 | nlohmann_json_dep, |
Jim Wright | 539b608 | 2021-08-02 14:50:23 -0500 | [diff] [blame] | 18 | phosphor_logging, |
| 19 | sdbusplus, |
| 20 | sdeventplus, |
Patrick Williams | 888bebd | 2023-05-31 19:19:49 -0500 | [diff] [blame] | 21 | stdplus, |
Jim Wright | 539b608 | 2021-08-02 14:50:23 -0500 | [diff] [blame] | 22 | ], |
Jim Wright | 2d99bf7 | 2021-11-19 11:18:12 -0600 | [diff] [blame] | 23 | link_with: [ |
| 24 | libpower |
| 25 | ], |
Jim Wright | 539b608 | 2021-08-02 14:50:23 -0500 | [diff] [blame] | 26 | implicit_include_directories: false, |
| 27 | include_directories: phosphor_power_sequencer_include_directories, |
| 28 | install: true |
| 29 | ) |