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',
10*1992083aSJim Wright    'power_interface.cpp',
11539b608fSJim Wright    dependencies: [
12539b608fSJim Wright        phosphor_logging,
13539b608fSJim Wright        sdbusplus,
14539b608fSJim Wright        sdeventplus,
15539b608fSJim Wright        stdplus
16539b608fSJim Wright    ],
17539b608fSJim Wright    implicit_include_directories: false,
18539b608fSJim Wright    include_directories: phosphor_power_sequencer_include_directories,
19539b608fSJim Wright    install: true
20539b608fSJim Wright)
21