blob: 39aec2abcb5ae3fc0258c2315297716e9e45d99e [file] [log] [blame]
Brad Bishop39b370a2019-09-02 02:37:32 -04001test(
2 'test_records',
3 executable(
4 'test_records',
5 'test_records.cpp',
6 dependencies: [
7 gtest,
8 phosphor_dbus_interfaces,
9 phosphor_logging,
10 sdbusplus,
11 ],
12 implicit_include_directories: false,
13 include_directories: '../..',
Brandon Wymandc8e9312020-02-14 17:04:18 -060014 link_args: dynamic_linker,
Patrick Williams5c6a6932023-11-29 06:44:29 -060015 build_rpath: get_option('oe-sdk').allowed() ? rpath : '',
Brad Bishop39b370a2019-09-02 02:37:32 -040016 link_with: [
17 libpower,
18 ],
19 objects: record_manager,
20 )
21)