xref: /openbmc/phosphor-bmc-code-mgmt/test/common/device/meson.build (revision c1b36628298d7799677680e70d455f85acf83650)
1
2testcases = ['device']
3
4foreach t : testcases
5    test(
6        t,
7        executable(
8            t,
9            f'@t@.cpp',
10            include_directories: [common_include],
11            dependencies: [
12                libpldm_dep,
13                sdbusplus_dep,
14                phosphor_logging_dep,
15                gtest,
16            ],
17            link_with: [
18                libpldmutil,
19                libpldmcreatepkg,
20                software_common_lib,
21                libexampledevice,
22            ],
23        ),
24    )
25endforeach
26
27