Public headers starting from `cmdline` (except for `cmdline.h` itself) and `bpf_def.h` were not previously included in the documentation build.
Add missing file patterns (globs) to include all public headers. Signed-off-by: Marat Khalili <[email protected]> --- doc/api/doxy-api.conf.in | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/doc/api/doxy-api.conf.in b/doc/api/doxy-api.conf.in index bedd94468150..2cb152d6db98 100644 --- a/doc/api/doxy-api.conf.in +++ b/doc/api/doxy-api.conf.in @@ -88,7 +88,8 @@ INPUT = @TOPDIR@/doc/api/doxy-api-index.md \ @TOPDIR@/lib/vhost INPUT += @API_EXAMPLES@ FILE_PATTERNS = rte_*.h \ - cmdline.h + cmdline*.h \ + bpf_def.h PREDEFINED = __DOXYGEN__ \ RTE_ATOMIC \ RTE_HAS_CPUSET \ -- 2.43.0

