common/cnxk: support matching VLAN existence
[dpdk.git] / drivers / common / mvep / meson.build
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
7 if is_windows
8     build = false
9     reason = 'not supported on Windows'
10     subdir_done()
11 endif
12
13 dep = dependency('libmusdk', required: false, method: 'pkg-config')
14 if not dep.found()
15     build = false
16     reason = 'missing dependency, "libmusdk"'
17     subdir_done()
18 endif
19
20 ext_deps += dep
21
22 sources = files('mvep_common.c')