crypto/qat: add symmetric session file
[dpdk.git] / drivers / crypto / qat / meson.build
1 # SPDX-License-Identifier: BSD-3-Clause
2 # Copyright(c) 2017-2018 Intel Corporation
3
4 dep = dependency('libcrypto', required: false)
5 if not dep.found()
6         build = false
7 endif
8 sources = files('qat_crypto.c', 'qat_qp.c',
9                 'qat_sym_session.c',
10                 'rte_qat_cryptodev.c',
11                 'qat_device.c')
12 includes += include_directories('qat_adf')
13 deps += ['bus_pci']
14 ext_deps += dep
15 pkgconfig_extra_libs += '-lcrypto'