]> git.droids-corp.org - dpdk.git/commitdiff
compressdev: separate out driver-only headers
authorBruce Richardson <bruce.richardson@intel.com>
Fri, 11 Mar 2022 20:05:20 +0000 (20:05 +0000)
committerThomas Monjalon <thomas@monjalon.net>
Tue, 15 Mar 2022 01:06:25 +0000 (02:06 +0100)
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>
lib/compressdev/meson.build

index 75ea666a9bec4b252aa3b765fe940f308ce13b05..c80295dc0dc3ef589d3c21939e0adb49cf6e038b 100644 (file)
@@ -11,7 +11,9 @@ sources = files('rte_compressdev.c',
     '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']