numam-dpdk/drivers/compress/qat/meson.build
Fiona Trahe 7a34c21557 compress/qat: add empty driver
Add Makefiles, meson files, and empty source files for compression PMD.
Handle cases for building either symmetric crypto PMD
or compression PMD or both and the common files both depend on.

Signed-off-by: Fiona Trahe <fiona.trahe@intel.com>
Signed-off-by: Tomasz Jozwiak <tomaszx.jozwiak@intel.com>
2018-07-24 01:48:10 +02:00

19 lines
436 B
Meson

# SPDX-License-Identifier: BSD-3-Clause
# Copyright(c) 2017-2018 Intel Corporation
# Add our sources files to the list
allow_experimental_apis = true
qat_sources += files('qat_comp_pmd.c',
'qat_comp.c')
qat_includes += include_directories('.')
qat_deps += 'compressdev'
qat_ext_deps += dep
# build the whole driver
sources += qat_sources
cflags += qat_cflags
deps += qat_deps
ext_deps += qat_ext_deps
includes += qat_includes