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

15 lines
401 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_kasumi', required: false)
if not lib.found() or not cc.has_header('sso_kasumi.h')
2019-06-25 11:12:58 +00:00
build = false
2020-06-18 16:55:50 +00:00
reason = 'missing dependency, "libsso_kasumi"'
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_kasumi_pmd.c', 'rte_kasumi_pmd_ops.c')
deps += ['bus_vdev']