]> git.proxmox.com Git - ceph.git/blob - ceph/src/spdk/dpdk/drivers/crypto/ccp/meson.build
update sources to ceph Nautilus 14.2.1
[ceph.git] / ceph / src / spdk / dpdk / 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 host_machine.system() != 'linux'
5 build = false
6 endif
7 dep = dependency('libcrypto', required: false)
8 if not dep.found()
9 build = false
10 endif
11 deps += 'bus_vdev'
12 deps += 'bus_pci'
13
14 sources = files('rte_ccp_pmd.c',
15 'ccp_crypto.c',
16 'ccp_dev.c',
17 'ccp_pci.c',
18 'ccp_pmd_ops.c')
19
20 ext_deps += dep
21 pkgconfig_extra_libs += '-lcrypto'