A Minimal qdocconf File

Below you will find the full contents of qtgui.qdocconf. The subsequent section will discuss every statement in the qdocconf file.

Each line from the qdocconf file is first quoted. Below each statement you will find the meaning.

include(compat.qdocconf)
outputdir   = html
headerdirs  = .
sourcedirs  = .
exampledirs = .
imagedirs   = ./images

Notes:

include(compat.qdocconf)

For compatibility with older versions of QDoc, it is recommended to include compat.qdocconf.

outputdir   = html

QDoc will put the documentation generated in the html directory.

headerdirs  = .

The header file associated with the .cpp source files can be found in the current directory.

sourcedirs  = .

The current directory is the directory containing the source files: the .cpp and .qdoc files used in the documentation.

exampledirs = .

The source code of the example files can be found in the current directory.

imagedirs   = ./images

The image files can be found in the underlying directory images.

© 2024 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.