test/bonding: fix RSS test when disable RSS
[dpdk.git] / drivers / crypto / ccp / meson.build
1 # SPDX-License-Identifier: BSD-3-Clause
2 # Copyright(c) 2018 Advanced Micro Devices, Inc. All rights reserved.
3
4 if not is_linux
5     build = false
6     reason = 'only supported on Linux'
7     subdir_done()
8 endif
9 dep = dependency('libcrypto', required: false, method: 'pkg-config')
10 if not dep.found()
11     build = false
12     reason = 'missing dependency, "libcrypto"'
13 endif
14 deps += 'bus_vdev'
15 deps += 'bus_pci'
16
17 sources = files(
18         'rte_ccp_pmd.c',
19         'ccp_crypto.c',
20         'ccp_dev.c',
21         'ccp_pci.c',
22         'ccp_pmd_ops.c',
23 )
24
25 ext_deps += dep