xref: /openbmc/pldm/requester/test/meson.build (revision a13bf143)
1tests = [
2  'handler_test',
3  'request_test',
4]
5
6foreach t : tests
7  test(t, executable(t.underscorify(), t + '.cpp',
8                     implicit_include_directories: false,
9                     include_directories: [ '../../', '../../pldmd' ],
10                     dependencies: [
11                         gtest,
12                         gmock,
13                         libpldm_dep,
14                         nlohmann_json_dep,
15                         phosphor_dbus_interfaces,
16                         phosphor_logging_dep,
17                         sdbusplus,
18                         sdeventplus,
19                    ]),
20       workdir: meson.current_source_dir())
21endforeach
22