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