1*539b608fSJim Wrightphosphor_power_sequencer_include_directories = include_directories(
2*539b608fSJim Wright    '.',
3*539b608fSJim Wright    '../..'
41553cd9aSJim Wright)
51553cd9aSJim Wright
6*539b608fSJim Wrightphosphor_power_sequencer = executable(
7*539b608fSJim Wright    'phosphor-power-control',
8*539b608fSJim Wright    'power_control_main.cpp',
9*539b608fSJim Wright    'power_control.cpp',
10*539b608fSJim Wright    dependencies: [
11*539b608fSJim Wright        phosphor_logging,
12*539b608fSJim Wright        sdbusplus,
13*539b608fSJim Wright        sdeventplus,
14*539b608fSJim Wright        stdplus
15*539b608fSJim Wright    ],
16*539b608fSJim Wright    implicit_include_directories: false,
17*539b608fSJim Wright    include_directories: phosphor_power_sequencer_include_directories,
18*539b608fSJim Wright    install: true
19*539b608fSJim Wright)
20