]> git.proxmox.com Git - ceph.git/blame - ceph/src/spdk/dpdk/drivers/crypto/qat/meson.build
update source to Ceph Pacific 16.2.2
[ceph.git] / ceph / src / spdk / dpdk / drivers / crypto / qat / meson.build
CommitLineData
11fdf7f2
TL
1# SPDX-License-Identifier: BSD-3-Clause
2# Copyright(c) 2017-2018 Intel Corporation
3
4# this does not build the QAT driver, instead that is done in the compression
5# driver which comes later. Here we just add our sources files to the list
6build = false
f67539c2 7reason = '' # sentinal value to suppress printout
11fdf7f2
TL
8dep = dependency('libcrypto', required: false)
9qat_includes += include_directories('.')
10qat_deps += 'cryptodev'
11if dep.found()
12 # Add our sources files to the list
13 qat_sources += files('qat_sym_pmd.c',
14 'qat_sym.c',
f67539c2 15 'qat_sym_session.c')
11fdf7f2 16 qat_ext_deps += dep
11fdf7f2
TL
17 qat_cflags += '-DBUILD_QAT_SYM'
18endif