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>
'rte_compressdev_pmd.c',
'rte_comp.c')
headers = files('rte_compressdev.h',
- 'rte_compressdev_pmd.h',
- 'rte_compressdev_internal.h',
'rte_comp.h')
+driver_sdk_headers = files(
+ 'rte_compressdev_pmd.h',
+ 'rte_compressdev_internal.h',
+ )
deps += ['kvargs', 'mbuf']