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
|
2019-06-26 10:17:41 +00:00
|
|
|
subdir_done()
|
2019-06-25 11:12:58 +00:00
|
|
|
endif
|
|
|
|
|
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']
|