]> git.proxmox.com Git - ceph.git/blob - ceph/src/spdk/dpdk/drivers/net/ixgbe/meson.build
import 15.2.0 Octopus source
[ceph.git] / ceph / src / spdk / dpdk / drivers / net / ixgbe / meson.build
1 # SPDX-License-Identifier: BSD-3-Clause
2 # Copyright(c) 2017 Intel Corporation
3
4 version = 2
5
6 cflags += ['-DRTE_LIBRTE_IXGBE_BYPASS']
7
8 allow_experimental_apis = true
9
10 subdir('base')
11 objs = [base_objs]
12
13 sources = files(
14 'ixgbe_82599_bypass.c',
15 'ixgbe_bypass.c',
16 'ixgbe_ethdev.c',
17 'ixgbe_fdir.c',
18 'ixgbe_flow.c',
19 'ixgbe_ipsec.c',
20 'ixgbe_pf.c',
21 'ixgbe_rxtx.c',
22 'ixgbe_tm.c',
23 'ixgbe_vf_representor.c',
24 'rte_pmd_ixgbe.c'
25 )
26
27 deps += ['hash', 'security']
28
29 if arch_subdir == 'x86'
30 dpdk_conf.set('RTE_IXGBE_INC_VECTOR', 1)
31 sources += files('ixgbe_rxtx_vec_sse.c')
32 endif
33
34 includes += include_directories('base')
35
36 install_headers('rte_pmd_ixgbe.h')