blob: 03507998b5a52f8641f768234ab4b7ada39fb405 [file] [log] [blame]
Brandon Wyman3f1242f2020-01-28 13:11:25 -06001test('phosphor-power-supply-tests',
2 executable('phosphor-power-supply-tests',
3 'power_supply_tests.cpp',
4 'mock.cpp',
5 dependencies: [
6 gmock,
7 gtest,
8 sdbusplus,
9 sdeventplus,
10 phosphor_logging,
11 ],
12 implicit_include_directories: false,
13 include_directories: [
14 '.',
15 '..',
16 '../..'
17 ],
18 link_args: dynamic_linker,
Brandon Wyman1d7a7df2020-03-26 10:14:05 -050019 link_with: [
20 libpower,
21 ],
Brandon Wyman3f1242f2020-01-28 13:11:25 -060022 build_rpath: get_option('oe-sdk').enabled() ? rpath : '',
23 objects: power_supply,
24 )
25)