xref: /openbmc/phosphor-bmc-code-mgmt/test/common/software/meson.build (revision e1d49f183fcddacee05f7fb4fe81fd4c85c60c6a)
1
2testcases = ['software_get_random_softwareid', 'software_config']
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