6f7217adbff5ff62c6847cabc414b61db6e0600a
[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)
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('rte_ccp_pmd.c',
17                 'ccp_crypto.c',
18                 'ccp_dev.c',
19                 'ccp_pci.c',
20                 'ccp_pmd_ops.c')
21
22 ext_deps += dep