From f1a8c05c740aeba25f0e44a0cc11903effdf6e99 Mon Sep 17 00:00:00 2001 From: Paul Wicking Date: Tue, 18 Dec 2018 18:55:20 +0100 Subject: Doc: Update minimum qdocconf Turn the minimum qdocconf into copypasta material. Change-Id: I923831701f60f5a95b7708326b5bfd669b424edb Reviewed-by: Martin Smith --- src/qdoc/doc/examples/minimum.qdocconf | 22 ++++++++-------------- 1 file changed, 8 insertions(+), 14 deletions(-) diff --git a/src/qdoc/doc/examples/minimum.qdocconf b/src/qdoc/doc/examples/minimum.qdocconf index 1d686cfe8..8f53ffc11 100644 --- a/src/qdoc/doc/examples/minimum.qdocconf +++ b/src/qdoc/doc/examples/minimum.qdocconf @@ -2,41 +2,35 @@ # and there are some compatibility issues between old and new # practices. For that reason, any QDoc configuration file needs to # include compat.qdocconf. - #include(compat.qdocconf) -# QDoc needs lists of file extensions to know which files -# to process in different situations. +# QDoc needs lists of file extensions to know which files to process in +# different situations. Uncomment the following include statement to get +# a pre-defined list of file extensions. +#include(fileextensions.qdocconf) -include(fileextensions.qdocconf) +# You can also specify file extensions manually. +headers.fileextensions = "*.h *.hpp" +sources.fileextensions = "*.cpp *.qml *.qdoc" # The outputdir variable specifies the directory # where QDoc will put the generated documentation. - outputdir = html - # The headerdirs variable specifies the directories # containing the header files associated # with the .cpp source files used in the documentation. - headerdirs = . - # The sourcedirs variable specifies the # directories containing the .cpp or .qdoc # files used in the documentation. - -#sourcedirs = . - +sourcedirs = . # The exampledirs variable specifies the directories containing # the source code of the example files. - exampledirs = . - # The imagedirs variable specifies the # directories containing the images used in the documentation. - imagedirs = ./images -- cgit v1.2.3