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', |
Shawn McCarney | db0b833 | 2020-04-06 14:13:04 -0500 | [diff] [blame] | 16 | 'system.cpp', |
Shawn McCarney | 6d59773 | 2019-11-13 17:40:07 -0600 | [diff] [blame] | 17 | |
Shawn McCarney | b38da99 | 2020-02-13 08:55:46 -0600 | [diff] [blame] | 18 | 'actions/if_action.cpp', |
Shawn McCarney | 8215be3 | 2020-02-19 10:00:57 -0600 | [diff] [blame] | 19 | 'actions/i2c_compare_bit_action.cpp', |
Shawn McCarney | 5ad5394 | 2020-02-20 09:33:55 -0600 | [diff] [blame] | 20 | 'actions/i2c_compare_byte_action.cpp', |
Shawn McCarney | f1c9061 | 2020-02-24 09:56:53 -0600 | [diff] [blame] | 21 | 'actions/i2c_compare_bytes_action.cpp', |
Shawn McCarney | 88d5b69 | 2020-02-25 10:39:02 -0600 | [diff] [blame] | 22 | 'actions/i2c_write_bit_action.cpp', |
Shawn McCarney | 83169bf | 2020-02-24 15:59:34 -0600 | [diff] [blame] | 23 | 'actions/i2c_write_byte_action.cpp', |
Shawn McCarney | a8119f2 | 2020-03-02 16:20:18 -0600 | [diff] [blame] | 24 | 'actions/i2c_write_bytes_action.cpp', |
| 25 | 'actions/pmbus_write_vout_command_action.cpp' |
Shawn McCarney | 494ef03 | 2019-11-07 15:56:50 -0600 | [diff] [blame] | 26 | ] |
| 27 | |
| 28 | phosphor_regulators_library = static_library( |
| 29 | 'phosphor-regulators', |
Shawn McCarney | 4c94bc7 | 2019-12-13 17:49:31 -0600 | [diff] [blame] | 30 | phosphor_regulators_library_source_files, |
Shawn McCarney | 494ef03 | 2019-11-07 15:56:50 -0600 | [diff] [blame] | 31 | implicit_include_directories: false, |
Shawn McCarney | afb7fc3 | 2019-12-11 19:42:03 -0600 | [diff] [blame] | 32 | include_directories: [ |
| 33 | phosphor_regulators_include_directories, |
| 34 | libi2c_inc |
| 35 | ] |
Shawn McCarney | 494ef03 | 2019-11-07 15:56:50 -0600 | [diff] [blame] | 36 | ) |
Shawn McCarney | 4c94bc7 | 2019-12-13 17:49:31 -0600 | [diff] [blame] | 37 | |
| 38 | phosphor_regulators = executable( |
| 39 | 'phosphor-regulators', |
Matthew Barth | 29e9e38 | 2020-01-23 13:40:49 -0600 | [diff] [blame] | 40 | 'interfaces/manager_interface.cpp', |
Shawn McCarney | 7c5d7b2 | 2020-04-03 18:50:13 -0500 | [diff] [blame] | 41 | 'journal.cpp', |
Shawn McCarney | 4c94bc7 | 2019-12-13 17:49:31 -0600 | [diff] [blame] | 42 | 'main.cpp', |
Matthew Barth | 29e9e38 | 2020-01-23 13:40:49 -0600 | [diff] [blame] | 43 | 'manager.cpp', |
Shawn McCarney | 4c94bc7 | 2019-12-13 17:49:31 -0600 | [diff] [blame] | 44 | dependencies: [ |
Shawn McCarney | 7c5d7b2 | 2020-04-03 18:50:13 -0500 | [diff] [blame] | 45 | libi2c_dep, |
| 46 | phosphor_logging, |
Shawn McCarney | 4c94bc7 | 2019-12-13 17:49:31 -0600 | [diff] [blame] | 47 | sdbusplus, |
Matthew Barth | 7cbc553 | 2020-01-29 15:13:13 -0600 | [diff] [blame] | 48 | sdeventplus, |
| 49 | stdplus |
Shawn McCarney | 4c94bc7 | 2019-12-13 17:49:31 -0600 | [diff] [blame] | 50 | ], |
Matthew Barth | bbc7c58 | 2020-02-03 15:55:15 -0600 | [diff] [blame] | 51 | link_with: [ |
| 52 | phosphor_regulators_library, |
| 53 | libpower |
| 54 | ], |
Shawn McCarney | 4c94bc7 | 2019-12-13 17:49:31 -0600 | [diff] [blame] | 55 | implicit_include_directories: false, |
| 56 | include_directories: phosphor_regulators_include_directories, |
| 57 | install: true |
| 58 | ) |
Matthew Barth | 3270708 | 2020-04-13 13:59:04 -0500 | [diff] [blame] | 59 | |
| 60 | regsctl = executable( |
| 61 | 'regsctl', |
| 62 | 'regsctl/main.cpp', |
| 63 | dependencies: [ |
| 64 | sdbusplus |
| 65 | ], |
| 66 | install: true |
| 67 | ) |