build: replace license text with SPDX tag
[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 subdir('base')
7 objs = [base_objs]
8
9 allow_experimental_apis = true
10 sources = files(
11         'ixgbe_82599_bypass.c',
12         'ixgbe_bypass.c',
13         'ixgbe_ethdev.c',
14         'ixgbe_fdir.c',
15         'ixgbe_flow.c',
16         'ixgbe_ipsec.c',
17         'ixgbe_pf.c',
18         'ixgbe_rxtx.c',
19         'ixgbe_tm.c',
20         'rte_pmd_ixgbe.c'
21 )
22
23 deps += ['hash', 'security']
24
25 if arch_subdir == 'x86'
26         dpdk_conf.set('RTE_IXGBE_INC_VECTOR', 1)
27         sources += files('ixgbe_rxtx_vec_sse.c')
28 endif
29
30 includes += include_directories('base')
31
32 install_headers('rte_pmd_ixgbe.h')