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