From cc84da2094f04a33ef212d9dec51027bbfbb7b8f Mon Sep 17 00:00:00 2001 From: Marcus Weseloh <marcus@weseloh.cc> Date: Sat, 14 Nov 2020 13:21:57 +0100 Subject: [PATCH] Split doxygen INPUT into separate lines, for easier readability --- doc/Doxyfile | 7 ++++++- doc/Doxyfile.cmake | 9 ++++++++- 2 files changed, 14 insertions(+), 2 deletions(-) diff --git a/doc/Doxyfile b/doc/Doxyfile index 950b9c50..6b677a91 100644 --- a/doc/Doxyfile +++ b/doc/Doxyfile @@ -85,7 +85,12 @@ WARN_LOGFILE = #--------------------------------------------------------------------------- # configuration options related to the input files #--------------------------------------------------------------------------- -INPUT = ../doc/fluidsynth-v20-devdoc.txt ../include ../include/fluidsynth ../src +INPUT = \ +../doc/fluidsynth-v20-devdoc.txt \ +../include \ +../include/fluidsynth \ +../src + INPUT_ENCODING = UTF-8 FILE_PATTERNS = *.c *.h RECURSIVE = YES diff --git a/doc/Doxyfile.cmake b/doc/Doxyfile.cmake index b5b8760e..e960ecea 100644 --- a/doc/Doxyfile.cmake +++ b/doc/Doxyfile.cmake @@ -85,7 +85,14 @@ WARN_LOGFILE = #--------------------------------------------------------------------------- # configuration options related to the input files #--------------------------------------------------------------------------- -INPUT = @CMAKE_SOURCE_DIR@/doc/fluidsynth-v20-devdoc.txt @CMAKE_SOURCE_DIR@/include @CMAKE_SOURCE_DIR@/include/fluidsynth @CMAKE_SOURCE_DIR@/src @CMAKE_BINARY_DIR@/include/fluidsynth @CMAKE_BINARY_DIR@/doc/fluidsettings.txt +INPUT = \ +@CMAKE_SOURCE_DIR@/doc/fluidsynth-v20-devdoc.txt \ +@CMAKE_SOURCE_DIR@/include \ +@CMAKE_SOURCE_DIR@/include/fluidsynth \ +@CMAKE_SOURCE_DIR@/src \ +@CMAKE_BINARY_DIR@/include/fluidsynth \ +@CMAKE_BINARY_DIR@/doc/fluidsettings.txt + INPUT_ENCODING = UTF-8 FILE_PATTERNS = *.c *.h RECURSIVE = YES