f-stack/dpdk/drivers/crypto/openssl/meson.build

12 lines
307 B
Meson
Raw Normal View History

2019-06-25 11:12:58 +00:00
# SPDX-License-Identifier: BSD-3-Clause
# Copyright(c) 2017 Intel Corporation
dep = dependency('libcrypto', required: false)
if not dep.found()
build = false
2020-06-18 16:55:50 +00:00
reason = 'missing dependency, "libcrypto"'
2019-06-25 11:12:58 +00:00
endif
deps += 'bus_vdev'
sources = files('rte_openssl_pmd.c', 'rte_openssl_pmd_ops.c')
ext_deps += dep