1539b608fSJim Wrightphosphor_power_sequencer_include_directories = include_directories(
2539b608fSJim Wright    '.',
3539b608fSJim Wright    '../..'
41553cd9aSJim Wright)
51553cd9aSJim Wright
6539b608fSJim Wrightphosphor_power_sequencer = executable(
7539b608fSJim Wright    'phosphor-power-control',
8539b608fSJim Wright    'power_control_main.cpp',
9539b608fSJim Wright    'power_control.cpp',
101992083aSJim Wright    'power_interface.cpp',
11539b608fSJim Wright    dependencies: [
127a5dd99bSJim Wright        libgpiodcxx,
13539b608fSJim Wright        phosphor_logging,
14539b608fSJim Wright        sdbusplus,
15539b608fSJim Wright        sdeventplus,
16539b608fSJim Wright        stdplus
17539b608fSJim Wright    ],
18*2d99bf7dSJim Wright    link_with: [
19*2d99bf7dSJim Wright        libpower
20*2d99bf7dSJim Wright    ],
21539b608fSJim Wright    implicit_include_directories: false,
22539b608fSJim Wright    include_directories: phosphor_power_sequencer_include_directories,
23539b608fSJim Wright    install: true
24539b608fSJim Wright)
25