1539b608fSJim Wrightphosphor_power_sequencer_include_directories = include_directories(
2539b608fSJim Wright    '.',
3539b608fSJim Wright    '../..'
41553cd9aSJim Wright)
51553cd9aSJim Wright
66a957f6fSShawn McCarneyphosphor_power_sequencer_library = static_library(
76a957f6fSShawn McCarney    'phosphor-power-sequencer',
86a957f6fSShawn McCarney    'config_file_parser.cpp',
924956598SShawn McCarney    'rail.cpp',
10e4fef0fcSShawn McCarney    'services.cpp',
116a957f6fSShawn McCarney    implicit_include_directories: false,
126a957f6fSShawn McCarney    dependencies: [
13*df4e0e7eSKonstantin Aladyshev        nlohmann_json_dep,
14*df4e0e7eSKonstantin Aladyshev        phosphor_logging
156a957f6fSShawn McCarney    ],
166a957f6fSShawn McCarney    include_directories: [
176a957f6fSShawn McCarney        phosphor_power_sequencer_include_directories
186a957f6fSShawn McCarney    ]
196a957f6fSShawn McCarney)
206a957f6fSShawn McCarney
21539b608fSJim Wrightphosphor_power_sequencer = executable(
22539b608fSJim Wright    'phosphor-power-control',
23539b608fSJim Wright    'power_control_main.cpp',
24539b608fSJim Wright    'power_control.cpp',
251992083aSJim Wright    'power_interface.cpp',
26930458c2SJim Wright    'power_sequencer_monitor.cpp',
27c48551abSJim Wright    'ucd90x_monitor.cpp',
28c48551abSJim Wright    'ucd90160_monitor.cpp',
297945dd27SJim Wright    'ucd90320_monitor.cpp',
30539b608fSJim Wright    dependencies: [
317a5dd99bSJim Wright        libgpiodcxx,
32888bebdeSPatrick Williams        nlohmann_json_dep,
33539b608fSJim Wright        phosphor_logging,
34539b608fSJim Wright        sdbusplus,
35539b608fSJim Wright        sdeventplus,
36888bebdeSPatrick Williams        stdplus,
37539b608fSJim Wright    ],
382d99bf7dSJim Wright    link_with: [
392d99bf7dSJim Wright        libpower
402d99bf7dSJim Wright    ],
41539b608fSJim Wright    implicit_include_directories: false,
42539b608fSJim Wright    include_directories: phosphor_power_sequencer_include_directories,
43539b608fSJim Wright    install: true
44539b608fSJim Wright)
45