QDoc Linking Guidelines: Difference between revisions
Jump to navigation
Jump to search
(Gather writing guidelines into a category) |
(Added links to relevant pages of QDoc manual.) |
||
(11 intermediate revisions by 3 users not shown) | |||
Line 2: | Line 2: | ||
This page is part of the [[QtWritingGuidelines | Qt Writing Guidelines]] | This page is part of the [[QtWritingGuidelines | Qt Writing Guidelines]] | ||
QDoc allows linking to C++ API, QML API, other QDoc projects, and external sites. The QDoc Manual has a linking guide. | |||
* [https://doc.qt.io/qt-6/qdoc-index.html QDoc Manual] | |||
* [https://doc.qt.io/qt-6/08-qdoc-commands-creatinglinks.html Creating Links] | |||
== Linking to QDoc projects or Qt modules == | |||
To link to other QDoc projects, set the directory name to the '''depends''' variable of your project's .qdocconf file. | |||
For example, to link to Qt Core, Qt QML, Qt GUI, and Qt Linguist pages such as API and examples, set the depends variable with the directory name: | |||
<code>depends += qtcore qtqml qtgui qtlinguist </code> | |||
The depends entry corresponds to the directories found in the '''QT_INSTALL_DOCS''' directory. | |||
For more information about linking to Qt documentation, visit the following pages from the QDoc Manual: | |||
* | * [https://doc.qt.io/qt-6/22-qdoc-configuration-generalvariables.html#depends depends variable] | ||
* | * [https://doc.qt.io/qt-6/qdoc-guide-conf.html Creating QDoc Configuration Files] | ||
* | * [https://doc.qt.io/qt-6/25-qdoc-configuration-derivedprojects.html#description Supporting Derived Projects] |
Latest revision as of 14:39, 14 October 2024
This page is part of the Qt Writing Guidelines
QDoc allows linking to C++ API, QML API, other QDoc projects, and external sites. The QDoc Manual has a linking guide.
Linking to QDoc projects or Qt modules
To link to other QDoc projects, set the directory name to the depends variable of your project's .qdocconf file.
For example, to link to Qt Core, Qt QML, Qt GUI, and Qt Linguist pages such as API and examples, set the depends variable with the directory name:
depends += qtcore qtqml qtgui qtlinguist
The depends entry corresponds to the directories found in the QT_INSTALL_DOCS directory.
For more information about linking to Qt documentation, visit the following pages from the QDoc Manual: