Shawn McCarney | 623f5a8 | 2019-11-03 08:55:40 -0600 | [diff] [blame] | 1 | phosphor_regulators_include_directories = include_directories( |
| 2 | '.', |
Matthew Barth | bbc7c58 | 2020-02-03 15:55:15 -0600 | [diff] [blame] | 3 | '../..', |
Shawn McCarney | 623f5a8 | 2019-11-03 08:55:40 -0600 | [diff] [blame] | 4 | 'actions' |
| 5 | ) |
Shawn McCarney | 494ef03 | 2019-11-07 15:56:50 -0600 | [diff] [blame] | 6 | |
Shawn McCarney | 4c94bc7 | 2019-12-13 17:49:31 -0600 | [diff] [blame] | 7 | phosphor_regulators_library_source_files = [ |
Shawn McCarney | db0b833 | 2020-04-06 14:13:04 -0500 | [diff] [blame] | 8 | 'chassis.cpp', |
Shawn McCarney | 0e8c68a | 2020-03-27 01:44:48 -0500 | [diff] [blame] | 9 | 'config_file_parser.cpp', |
Shawn McCarney | 3976500 | 2020-04-09 18:03:26 -0500 | [diff] [blame] | 10 | 'configuration.cpp', |
Shawn McCarney | db0b833 | 2020-04-06 14:13:04 -0500 | [diff] [blame] | 11 | 'device.cpp', |
Shawn McCarney | 55f496c | 2020-04-09 16:19:14 -0500 | [diff] [blame] | 12 | 'exception_utils.cpp', |
Shawn McCarney | 6d59773 | 2019-11-13 17:40:07 -0600 | [diff] [blame] | 13 | 'id_map.cpp', |
Shawn McCarney | 6663abf | 2020-02-29 17:25:48 -0600 | [diff] [blame] | 14 | 'pmbus_utils.cpp', |
Shawn McCarney | 779b956 | 2020-04-13 17:05:45 -0500 | [diff] [blame] | 15 | 'rail.cpp', |
Bob King | 833b8e0 | 2020-06-11 14:56:38 +0800 | [diff] [blame^] | 16 | 'sensor_monitoring.cpp', |
Shawn McCarney | db0b833 | 2020-04-06 14:13:04 -0500 | [diff] [blame] | 17 | 'system.cpp', |
Shawn McCarney | 6d59773 | 2019-11-13 17:40:07 -0600 | [diff] [blame] | 18 | |
Shawn McCarney | b38da99 | 2020-02-13 08:55:46 -0600 | [diff] [blame] | 19 | 'actions/if_action.cpp', |
Shawn McCarney | 8215be3 | 2020-02-19 10:00:57 -0600 | [diff] [blame] | 20 | 'actions/i2c_compare_bit_action.cpp', |
Shawn McCarney | 5ad5394 | 2020-02-20 09:33:55 -0600 | [diff] [blame] | 21 | 'actions/i2c_compare_byte_action.cpp', |
Shawn McCarney | f1c9061 | 2020-02-24 09:56:53 -0600 | [diff] [blame] | 22 | 'actions/i2c_compare_bytes_action.cpp', |
Shawn McCarney | 88d5b69 | 2020-02-25 10:39:02 -0600 | [diff] [blame] | 23 | 'actions/i2c_write_bit_action.cpp', |
Shawn McCarney | 83169bf | 2020-02-24 15:59:34 -0600 | [diff] [blame] | 24 | 'actions/i2c_write_byte_action.cpp', |
Shawn McCarney | a8119f2 | 2020-03-02 16:20:18 -0600 | [diff] [blame] | 25 | 'actions/i2c_write_bytes_action.cpp', |
Bob King | 717d2da | 2020-06-02 11:11:15 +0800 | [diff] [blame] | 26 | 'actions/pmbus_read_sensor_action.cpp', |
Shawn McCarney | a8119f2 | 2020-03-02 16:20:18 -0600 | [diff] [blame] | 27 | 'actions/pmbus_write_vout_command_action.cpp' |
Shawn McCarney | 494ef03 | 2019-11-07 15:56:50 -0600 | [diff] [blame] | 28 | ] |
| 29 | |
| 30 | phosphor_regulators_library = static_library( |
| 31 | 'phosphor-regulators', |
Shawn McCarney | 4c94bc7 | 2019-12-13 17:49:31 -0600 | [diff] [blame] | 32 | phosphor_regulators_library_source_files, |
Shawn McCarney | 494ef03 | 2019-11-07 15:56:50 -0600 | [diff] [blame] | 33 | implicit_include_directories: false, |
Shawn McCarney | afb7fc3 | 2019-12-11 19:42:03 -0600 | [diff] [blame] | 34 | include_directories: [ |
| 35 | phosphor_regulators_include_directories, |
| 36 | libi2c_inc |
| 37 | ] |
Shawn McCarney | 494ef03 | 2019-11-07 15:56:50 -0600 | [diff] [blame] | 38 | ) |
Shawn McCarney | 4c94bc7 | 2019-12-13 17:49:31 -0600 | [diff] [blame] | 39 | |
| 40 | phosphor_regulators = executable( |
| 41 | 'phosphor-regulators', |
Matthew Barth | 29e9e38 | 2020-01-23 13:40:49 -0600 | [diff] [blame] | 42 | 'interfaces/manager_interface.cpp', |
Shawn McCarney | 7c5d7b2 | 2020-04-03 18:50:13 -0500 | [diff] [blame] | 43 | 'journal.cpp', |
Shawn McCarney | 4c94bc7 | 2019-12-13 17:49:31 -0600 | [diff] [blame] | 44 | 'main.cpp', |
Matthew Barth | 29e9e38 | 2020-01-23 13:40:49 -0600 | [diff] [blame] | 45 | 'manager.cpp', |
Shawn McCarney | 4c94bc7 | 2019-12-13 17:49:31 -0600 | [diff] [blame] | 46 | dependencies: [ |
Shawn McCarney | 7c5d7b2 | 2020-04-03 18:50:13 -0500 | [diff] [blame] | 47 | libi2c_dep, |
| 48 | phosphor_logging, |
Shawn McCarney | 4c94bc7 | 2019-12-13 17:49:31 -0600 | [diff] [blame] | 49 | sdbusplus, |
Matthew Barth | 7cbc553 | 2020-01-29 15:13:13 -0600 | [diff] [blame] | 50 | sdeventplus, |
| 51 | stdplus |
Shawn McCarney | 4c94bc7 | 2019-12-13 17:49:31 -0600 | [diff] [blame] | 52 | ], |
Matthew Barth | bbc7c58 | 2020-02-03 15:55:15 -0600 | [diff] [blame] | 53 | link_with: [ |
| 54 | phosphor_regulators_library, |
| 55 | libpower |
| 56 | ], |
Shawn McCarney | 4c94bc7 | 2019-12-13 17:49:31 -0600 | [diff] [blame] | 57 | implicit_include_directories: false, |
| 58 | include_directories: phosphor_regulators_include_directories, |
| 59 | install: true |
| 60 | ) |
Matthew Barth | 3270708 | 2020-04-13 13:59:04 -0500 | [diff] [blame] | 61 | |
| 62 | regsctl = executable( |
| 63 | 'regsctl', |
| 64 | 'regsctl/main.cpp', |
| 65 | dependencies: [ |
| 66 | sdbusplus |
| 67 | ], |
| 68 | install: true |
| 69 | ) |