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