blob: 7b852bb0e9409016711b43712944437f85671285 [file] [log] [blame]
Shawn McCarney623f5a82019-11-03 08:55:40 -06001phosphor_regulators_include_directories = include_directories(
2 '.',
Matthew Barthbbc7c582020-02-03 15:55:15 -06003 '../..',
Shawn McCarney623f5a82019-11-03 08:55:40 -06004 'actions'
5)
Shawn McCarney494ef032019-11-07 15:56:50 -06006
Shawn McCarney4c94bc72019-12-13 17:49:31 -06007phosphor_regulators_library_source_files = [
Shawn McCarneydb0b8332020-04-06 14:13:04 -05008 'chassis.cpp',
Shawn McCarney0e8c68a2020-03-27 01:44:48 -05009 'config_file_parser.cpp',
Shawn McCarney39765002020-04-09 18:03:26 -050010 'configuration.cpp',
Shawn McCarneydb0b8332020-04-06 14:13:04 -050011 'device.cpp',
Shawn McCarney1df59542020-09-24 18:43:18 -050012 'error_logging.cpp',
Shawn McCarney55f496c2020-04-09 16:19:14 -050013 'exception_utils.cpp',
Shawn McCarneyf3633f62020-09-02 10:34:52 -050014 'ffdc_file.cpp',
Shawn McCarney6d597732019-11-13 17:40:07 -060015 'id_map.cpp',
Bob Kingca08a792020-09-30 14:30:13 +080016 'journal.cpp',
Shawn McCarney6663abf2020-02-29 17:25:48 -060017 'pmbus_utils.cpp',
Bob King462e5922020-11-19 17:48:30 +080018 'presence_detection.cpp',
Shawn McCarneyd58858c2020-11-04 18:28:01 -060019 'presence_service.cpp',
Shawn McCarney779b9562020-04-13 17:05:45 -050020 'rail.cpp',
Bob King833b8e02020-06-11 14:56:38 +080021 'sensor_monitoring.cpp',
Shawn McCarneydb0b8332020-04-06 14:13:04 -050022 'system.cpp',
Shawn McCarneyb6f07c92020-09-03 21:49:21 -050023 'temporary_file.cpp',
Shawn McCarney6d597732019-11-13 17:40:07 -060024
Bob King49e90d32020-11-11 13:55:25 +080025 'actions/compare_presence_action.cpp',
Shawn McCarneyb38da992020-02-13 08:55:46 -060026 'actions/if_action.cpp',
Shawn McCarney8215be32020-02-19 10:00:57 -060027 'actions/i2c_compare_bit_action.cpp',
Shawn McCarney5ad53942020-02-20 09:33:55 -060028 'actions/i2c_compare_byte_action.cpp',
Shawn McCarneyf1c90612020-02-24 09:56:53 -060029 'actions/i2c_compare_bytes_action.cpp',
Shawn McCarney88d5b692020-02-25 10:39:02 -060030 'actions/i2c_write_bit_action.cpp',
Shawn McCarney83169bf2020-02-24 15:59:34 -060031 'actions/i2c_write_byte_action.cpp',
Shawn McCarneya8119f22020-03-02 16:20:18 -060032 'actions/i2c_write_bytes_action.cpp',
Bob King717d2da2020-06-02 11:11:15 +080033 'actions/pmbus_read_sensor_action.cpp',
Shawn McCarneya8119f22020-03-02 16:20:18 -060034 'actions/pmbus_write_vout_command_action.cpp'
Shawn McCarney494ef032019-11-07 15:56:50 -060035]
36
37phosphor_regulators_library = static_library(
38 'phosphor-regulators',
Shawn McCarney4c94bc72019-12-13 17:49:31 -060039 phosphor_regulators_library_source_files,
Shawn McCarney494ef032019-11-07 15:56:50 -060040 implicit_include_directories: false,
Shawn McCarneyafb7fc32019-12-11 19:42:03 -060041 include_directories: [
42 phosphor_regulators_include_directories,
43 libi2c_inc
44 ]
Shawn McCarney494ef032019-11-07 15:56:50 -060045)
Shawn McCarney4c94bc72019-12-13 17:49:31 -060046
47phosphor_regulators = executable(
48 'phosphor-regulators',
Matthew Barth29e9e382020-01-23 13:40:49 -060049 'interfaces/manager_interface.cpp',
Shawn McCarney4c94bc72019-12-13 17:49:31 -060050 'main.cpp',
Matthew Barth29e9e382020-01-23 13:40:49 -060051 'manager.cpp',
Shawn McCarney4c94bc72019-12-13 17:49:31 -060052 dependencies: [
Shawn McCarney7c5d7b22020-04-03 18:50:13 -050053 libi2c_dep,
54 phosphor_logging,
Shawn McCarney4c94bc72019-12-13 17:49:31 -060055 sdbusplus,
Matthew Barth7cbc5532020-01-29 15:13:13 -060056 sdeventplus,
57 stdplus
Shawn McCarney4c94bc72019-12-13 17:49:31 -060058 ],
Matthew Barthbbc7c582020-02-03 15:55:15 -060059 link_with: [
60 phosphor_regulators_library,
61 libpower
62 ],
Shawn McCarney4c94bc72019-12-13 17:49:31 -060063 implicit_include_directories: false,
64 include_directories: phosphor_regulators_include_directories,
65 install: true
66)
Matthew Barth32707082020-04-13 13:59:04 -050067
68regsctl = executable(
69 'regsctl',
70 'regsctl/main.cpp',
71 dependencies: [
72 sdbusplus
73 ],
74 install: true
75)