crypto/octeontx2: add symmetric capabilities
[dpdk.git] / drivers / crypto / octeontx2 / meson.build
1 # SPDX-License-Identifier: BSD-3-Clause
2 # Copyright (C) 2019 Marvell International Ltd.
3
4 if host_machine.system() != 'linux'
5         build = false
6 endif
7
8 deps += ['bus_pci']
9 deps += ['common_cpt']
10 deps += ['common_octeontx2']
11 name = 'octeontx2_crypto'
12
13 sources = files('otx2_cryptodev.c',
14                 'otx2_cryptodev_capabilities.c',
15                 'otx2_cryptodev_hw_access.c',
16                 'otx2_cryptodev_mbox.c',
17                 'otx2_cryptodev_ops.c')
18
19 extra_flags = []
20 # This integrated controller runs only on a arm64 machine, remove 32bit warnings
21 if not dpdk_conf.get('RTE_ARCH_64')
22         extra_flags += ['-Wno-int-to-pointer-cast', '-Wno-pointer-to-int-cast']
23 endif
24
25 foreach flag: extra_flags
26         if cc.has_argument(flag)
27                 cflags += flag
28         endif
29 endforeach
30
31 includes += include_directories('../../common/cpt')
32 includes += include_directories('../../common/octeontx2')
33 includes += include_directories('../../mempool/octeontx2')