New upstream version 18.11-rc1
[deb_dpdk.git] / drivers / net / avf / meson.build
1 # SPDX-License-Identifier: BSD-3-Clause
2 # Copyright(c) 2018 Luca Boccassi <bluca@debian.org>
3
4 cflags += ['-Wno-strict-aliasing']
5
6 allow_experimental_apis = true
7
8 subdir('base')
9 objs = [base_objs]
10
11 sources = files(
12         'avf_ethdev.c',
13         'avf_rxtx.c',
14         'avf_vchnl.c',
15 )
16
17 if arch_subdir == 'x86'
18         dpdk_conf.set('RTE_LIBRTE_AVF_INC_VECTOR', 1)
19         sources += files('avf_rxtx_vec_sse.c')
20 endif