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

15 lines
386 B
Meson
Raw Normal View History

2019-06-25 11:12:58 +00:00
# SPDX-License-Identifier: BSD-3-Clause
# Copyright(c) 2018 Intel Corporation
2019-06-26 10:17:41 +00:00
lib = cc.find_library('sso_zuc', required: false)
if not lib.found() or not cc.has_header('sso_zuc.h')
2019-06-25 11:12:58 +00:00
build = false
2020-06-18 16:55:50 +00:00
reason = 'missing dependency, "libsso_zuc"'
2019-06-26 10:17:41 +00:00
subdir_done()
2019-06-25 11:12:58 +00:00
endif
2020-06-18 16:55:50 +00:00
allow_experimental_apis = true
2019-06-26 10:17:41 +00:00
ext_deps += lib
2019-06-25 11:12:58 +00:00
sources = files('rte_zuc_pmd.c', 'rte_zuc_pmd_ops.c')
deps += ['bus_vdev']