1test('phosphor-power-sequencer-tests',
2     executable('phosphor-power-sequencer-tests',
3                'config_file_parser_error_tests.cpp',
4                'config_file_parser_tests.cpp',
5                'rail_tests.cpp',
6                dependencies: [
7                    gtest,
8                    nlohmann_json_dep
9                ],
10                link_args: dynamic_linker,
11                build_rpath: get_option('oe-sdk').allowed() ? rpath : '',
12                link_with: [
13                    phosphor_power_sequencer_library,
14                    libpower
15                ],
16                implicit_include_directories: false,
17                include_directories: [
18                    '.',
19                    '../src',
20                    '../..'
21                ]
22     )
23)
24