net/mlx5: fix mismatch metadata flow with meter action
[dpdk.git] / drivers / crypto / octeontx / meson.build
1 # SPDX-License-Identifier: BSD-3-Clause
2 # Copyright(c) 2018 Cavium, Inc
3 #
4
5 if not is_linux or not dpdk_conf.get('RTE_ARCH_64')
6     build = false
7     reason = 'only supported on 64-bit Linux'
8     subdir_done()
9 endif
10
11 if is_windows
12     build = false
13     reason = 'not supported on Windows'
14     subdir_done()
15 endif
16
17 deps += ['bus_pci']
18 deps += ['bus_vdev']
19 deps += ['common_cpt']
20 deps += ['eventdev']
21
22 sources = files(
23         'otx_cryptodev.c',
24         'otx_cryptodev_capabilities.c',
25         'otx_cryptodev_hw_access.c',
26         'otx_cryptodev_mbox.c',
27         'otx_cryptodev_ops.c',
28 )
29
30 includes += include_directories('../../common/cpt')
31 includes += include_directories('../../common/octeontx')
32 includes += include_directories('../../event/octeontx')
33 includes += include_directories('../../mempool/octeontx')
34 includes += include_directories('../../net/octeontx')