b98d1dc0fb
The headers rte_compressdev_pmd.h and rte_compressdev_internal.h are, as the filenames suggest, headers for building drivers using the compressdev APIs. As such they should be marked as "driver_sdk_headers" rather than just "headers" in the meson.build file. Signed-off-by: Bruce Richardson <bruce.richardson@intel.com>
20 lines
447 B
Meson
20 lines
447 B
Meson
# 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')
|
|
driver_sdk_headers = files(
|
|
'rte_compressdev_pmd.h',
|
|
'rte_compressdev_internal.h',
|
|
)
|
|
deps += ['kvargs', 'mbuf']
|