From 41ca8f2050abde897628d6c690cd49be0686207a Mon Sep 17 00:00:00 2001 From: Albrecht Schlosser Date: Thu, 7 Sep 2023 13:41:47 +0200 Subject: Update Doxyfile.in from doxygen version 1.5.5 to 1.8.14 Most (if not all) doxygen tags introduced after 1.5.5 are commented out to avoid doxygen warnings about obsolete or unknown tags, except those tags that need a specific value. Add 'HTML_COLORSTYLE = TOGGLE' (since 1.9.5) for better user experience. With this tag users can switch between dark and light mode *if* the docs were generated with doxygen 1.9.5 or later. Enable search engine. Log doxygen conversion errors and warnings to Doxy*_error.log, i.e. silence the doxygen conversion process. documentation/src/index.dox: Remove background color from html index page for better contrast when using dark mode. --- documentation/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'documentation/Makefile') diff --git a/documentation/Makefile b/documentation/Makefile index 20f171c80..559b42719 100644 --- a/documentation/Makefile +++ b/documentation/Makefile @@ -149,7 +149,7 @@ uninstall-linux uninstall-osx: Doxyfile: Doxyfile.in generated.dox copyright.dox echo "Generating Doxyfile ..." - $(DOXYDOC) -u -s - < $< | \ + $(DOXYDOC) -u -s - < $< 2>Doxyfile_error.log | \ sed -e's,@FLTK_VERSION@,$(FLTK_VERSION),' \ -e's,@GENERATE_HTML@,YES,' \ -e's,@GENERATE_LATEX@,NO,' \ @@ -162,7 +162,7 @@ Doxyfile: Doxyfile.in generated.dox copyright.dox Doxybook: Doxyfile.in generated.dox copyright.dox echo "Generating Doxybook ..." - $(DOXYDOC) -u -s - < $< | \ + $(DOXYDOC) -u -s - < $< 2>Doxybook_error.log | \ sed -e's,@FLTK_VERSION@,$(FLTK_VERSION),' \ -e's,@GENERATE_HTML@,NO,' \ -e's,@GENERATE_LATEX@,YES,' \ -- cgit v1.2.3