9a063cf41c
Use SPDK license for dual-licensed files and update license date in all files Signed-off-by: Fiona Trahe <fiona.trahe@intel.com>
15 lines
389 B
Meson
15 lines
389 B
Meson
# SPDX-License-Identifier: BSD-3-Clause
|
|
# Copyright(c) 2017-2018 Intel Corporation
|
|
|
|
dep = dependency('libcrypto', required: false)
|
|
if not dep.found()
|
|
build = false
|
|
endif
|
|
sources = files('qat_crypto.c', 'qat_qp.c',
|
|
'qat_adf/qat_algs_build_desc.c',
|
|
'rte_qat_cryptodev.c')
|
|
includes += include_directories('qat_adf')
|
|
deps += ['bus_pci']
|
|
ext_deps += dep
|
|
pkgconfig_extra_libs += '-lcrypto'
|