xref: /dpdk/drivers/crypto/mvsam/meson.build (revision 5731efea6f5d22517ca7522ded896471a9a658a1)
1# SPDX-License-Identifier: BSD-3-Clause
2# Copyright(c) 2018 Marvell International Ltd.
3# Copyright(c) 2018 Semihalf.
4# All rights reserved.
5
6if is_windows
7    build = false
8    reason = 'not supported on Windows'
9    subdir_done()
10endif
11
12dep = dependency('libmusdk', required: false, method: 'pkg-config')
13if not dep.found()
14    build = false
15    reason = 'missing dependency, "libmusdk"'
16    subdir_done()
17endif
18
19ext_deps += dep
20
21sources = files('rte_mrvl_pmd.c', 'rte_mrvl_pmd_ops.c')
22
23deps += ['bus_vdev', 'common_mvep', 'security']
24