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',
9*e4fef0fcSShawn McCarney    'services.cpp',
106a957f6fSShawn McCarney    implicit_include_directories: false,
116a957f6fSShawn McCarney    dependencies: [
126a957f6fSShawn McCarney        nlohmann_json_dep
136a957f6fSShawn McCarney    ],
146a957f6fSShawn McCarney    include_directories: [
156a957f6fSShawn McCarney        phosphor_power_sequencer_include_directories
166a957f6fSShawn McCarney    ]
176a957f6fSShawn McCarney)
186a957f6fSShawn McCarney
19539b608fSJim Wrightphosphor_power_sequencer = executable(
20539b608fSJim Wright    'phosphor-power-control',
21539b608fSJim Wright    'power_control_main.cpp',
22539b608fSJim Wright    'power_control.cpp',
231992083aSJim Wright    'power_interface.cpp',
24930458c2SJim Wright    'power_sequencer_monitor.cpp',
25c48551abSJim Wright    'ucd90x_monitor.cpp',
26c48551abSJim Wright    'ucd90160_monitor.cpp',
277945dd27SJim Wright    'ucd90320_monitor.cpp',
28539b608fSJim Wright    dependencies: [
297a5dd99bSJim Wright        libgpiodcxx,
30888bebdeSPatrick Williams        nlohmann_json_dep,
31539b608fSJim Wright        phosphor_logging,
32539b608fSJim Wright        sdbusplus,
33539b608fSJim Wright        sdeventplus,
34888bebdeSPatrick Williams        stdplus,
35539b608fSJim Wright    ],
362d99bf7dSJim Wright    link_with: [
372d99bf7dSJim Wright        libpower
382d99bf7dSJim Wright    ],
39539b608fSJim Wright    implicit_include_directories: false,
40539b608fSJim Wright    include_directories: phosphor_power_sequencer_include_directories,
41539b608fSJim Wright    install: true
42539b608fSJim Wright)
43