diff options
author | Daniel Teichmann <daniel.teichmann@das-netzwerkteam.de> | 2021-06-29 17:04:19 +0200 |
---|---|---|
committer | Daniel Teichmann <daniel.teichmann@das-netzwerkteam.de> | 2021-06-29 17:05:10 +0200 |
commit | e024e6f2aca89be0b02f26df84a7eb59adb687fa (patch) | |
tree | 8c4474a5b14fb488a1f6d55e3dce64fc53bd482e | |
parent | c0c1fcf949508e293632bf1dec61511f374a2396 (diff) | |
download | RWA.Support.DesktopApp-e024e6f2aca89be0b02f26df84a7eb59adb687fa.tar.gz RWA.Support.DesktopApp-e024e6f2aca89be0b02f26df84a7eb59adb687fa.tar.bz2 RWA.Support.DesktopApp-e024e6f2aca89be0b02f26df84a7eb59adb687fa.zip |
Add minimal.qdocconf for QDoc; add docs/ to .gitignore
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | minimal.qdocconf | 36 |
2 files changed, 37 insertions, 0 deletions
@@ -1,6 +1,7 @@ # This file is used to ignore files which are generated # ---------------------------------------------------------------------------- +docs/ *~ *.autosave *.a diff --git a/minimal.qdocconf b/minimal.qdocconf new file mode 100644 index 0000000..d2f73c2 --- /dev/null +++ b/minimal.qdocconf @@ -0,0 +1,36 @@ +# QDoc is a tool that constantly evolves to suit our needs, +# 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. Uncomment the following include statement to get +# a pre-defined list of file extensions. +#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 = docs + +# The headerdirs variable specifies the directories +# containing the header files associated +# with the .cpp source files used in the documentation. +headerdirs = ./src/ + +# The sourcedirs variable specifies the +# directories containing the .cpp or .qdoc +# files used in the documentation. +sourcedirs = ./src/ + +# 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 |