crypto/qat: move to dynamic logging for non-dp trace
[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_common.c',
9                 'qat_qp.c',
10                 'qat_device.c',
11                 'qat_logs.c',
12                 'qat_sym_pmd.c', 'qat_sym.c', 'qat_sym_session.c',
13                 'qat_asym_pmd.c',
14                 'qat_comp_pmd.c')
15 includes += include_directories('qat_adf')
16 deps += ['bus_pci']
17 ext_deps += dep
18 pkgconfig_extra_libs += '-lcrypto'