2022-09-06 04:00:10 +00:00
|
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
# Copyright(c) 2018 Intel Corporation
|
|
|
|
|
|
|
|
if is_windows
|
|
|
|
build = false
|
|
|
|
reason = 'not supported on Windows'
|
|
|
|
subdir_done()
|
|
|
|
endif
|
|
|
|
|
|
|
|
sources = files('rte_compressdev.c',
|
|
|
|
'rte_compressdev_pmd.c',
|
|
|
|
'rte_comp.c')
|
|
|
|
headers = files('rte_compressdev.h',
|
|
|
|
'rte_comp.h')
|
2023-09-13 12:21:49 +00:00
|
|
|
driver_sdk_headers = files(
|
|
|
|
'rte_compressdev_pmd.h',
|
|
|
|
'rte_compressdev_internal.h',
|
|
|
|
)
|
2022-09-06 04:00:10 +00:00
|
|
|
deps += ['kvargs', 'mbuf']
|