net/i40e: fix Rx packet statistics
[dpdk.git] / drivers / net / mvneta / 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 if is_windows
7     build = false
8     reason = 'not supported on Windows'
9     subdir_done()
10 endif
11
12 dep = dependency('libmusdk', required: false, method: 'pkg-config')
13 if not dep.found()
14     build = false
15     reason = 'missing dependency, "libmusdk"'
16     subdir_done()
17 endif
18
19 ext_deps += dep
20
21 sources = files(
22         'mvneta_ethdev.c',
23         'mvneta_rxtx.c',
24 )
25
26 deps += ['cfgfile', 'common_mvep']