From 6ee2e79bee89bd7d3657201c803c9a618b0b2af9 Mon Sep 17 00:00:00 2001 From: Jean-Baptiste Kempf Date: Sat, 14 Aug 2010 17:25:56 +0200 Subject: [PATCH] Create a special script for Doxygen, instead of the toolbox --- doc/Doxyfile.in | 2 +- doc/doc_helper.sh | 23 +++++++++++++++++++++++ 2 files changed, 24 insertions(+), 1 deletion(-) create mode 100644 doc/doc_helper.sh diff --git a/doc/Doxyfile.in b/doc/Doxyfile.in index 4c234a8f4c..b8886e32ef 100644 --- a/doc/Doxyfile.in +++ b/doc/Doxyfile.in @@ -663,7 +663,7 @@ IMAGE_PATH = # If FILTER_PATTERNS is specified, this tag will be # ignored. -INPUT_FILTER = "@top_srcdir@/toolbox --add-include" +INPUT_FILTER = "@top_srcdir@/doc/doc_helper.sh" # The FILTER_PATTERNS tag can be used to specify filters on a per file pattern # basis. diff --git a/doc/doc_helper.sh b/doc/doc_helper.sh new file mode 100644 index 0000000000..4527b49ae7 --- /dev/null +++ b/doc/doc_helper.sh @@ -0,0 +1,23 @@ +#! /bin/sh + +# Add before most headers +# from old toolbox + +# Clean env +LC_ALL=C +export LC_ALL +LANG=C +export LANG + +if test "$1" = "" ; then + exit 0 +fi + +## Add includes to help doxygen +case "$1" in + */vlc_common.h|*/include/vlc/*);; + */include/*.h) echo "#include " ;; +esac +cat $1 +exit 0 + -- 2.39.2