common/sfc_efx/base: add flag to use Rx prefix user flag
[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 endif
8 dep = dependency('libcrypto', required: false, method: 'pkg-config')
9 if not dep.found()
10     build = false
11     reason = 'missing dependency, "libcrypto"'
12 endif
13 deps += 'bus_vdev'
14 deps += 'bus_pci'
15
16 sources = files(
17         'rte_ccp_pmd.c',
18         'ccp_crypto.c',
19         'ccp_dev.c',
20         'ccp_pci.c',
21         'ccp_pmd_ops.c',
22 )
23
24 ext_deps += dep