Qt Documentation
Go to file
Lucie Gérard c91bd3ae52 Add REUSE.toml files and missing licenses
REUSE.toml files are read by reuse to complement or override the
copyright and licensing information found in file.

The use of REUSE.toml files was introduced in REUSE version 3.1.0a1.
This reuse version is compatible with reuse specification
version 3.2 [1].
With this commit's files,
* The SPDX document generated by reuse spdx conforms to SPDX 2.3,
* The reuse lint command reports that the Qt project is reuse compliant.

In order to be reuse compliant all the licenses referenced in file
or within a REUSE.toml file must be present in the LICENSES
directory at the base of the module.
The missing licenses are added.

Also, all the licenses present in the LICENSES directory must be used.
License files not used are removed.

[1]: https://reuse.software/spec-3.2/

Task-number: QTBUG-124453
Task-number: QTBUG-125211
Pick-to: 6.8
Change-Id: I1dabbf6f13c2ae5ad73dc8c7df9108c160e1dc2b
Reviewed-by: Joerg Bornemann <joerg.bornemann@qt.io>
2024-11-06 13:48:01 +01:00
LICENSES Add REUSE.toml files and missing licenses 2024-11-06 13:48:01 +01:00
coin Doc: Enable zero warning limit 2021-11-15 21:32:46 +01:00
dist Add REUSE.toml files and missing licenses 2024-11-06 13:48:01 +01:00
doc Android: remove packagingOptions.jniLibs.useLegacyPackaging property 2024-11-01 15:58:52 +03:00
examples Add REUSE.toml files and missing licenses 2024-11-06 13:48:01 +01:00
tests Change license for tests file 2024-04-04 07:32:33 +00:00
.cmake.conf Bump version to 6.9.0 2024-06-20 21:59:59 +01:00
.gitattributes Update the git-archive export options 2012-09-03 19:51:51 +02:00
.gitignore Don't gitignore /doc/ 2023-06-22 16:18:45 +02:00
.tag Update the git-archive export options 2012-09-03 19:51:51 +02:00
CMakeLists.txt XR physics-base Teleportation demo 2024-09-16 11:36:58 +00:00
README Update README 2023-05-09 18:37:33 +02:00
REUSE.toml Add REUSE.toml files and missing licenses 2024-11-06 13:48:01 +01:00
dependencies.yaml Update dependencies on 'dev' in qt/qtdoc 2024-10-23 15:05:24 +00:00
licenseRule.json Add a licenseRule.json file for checking of SPDX license identifiers 2024-06-19 08:07:29 +00:00

README

To Generate Qt Documentation:

qtdoc contains the main Qt Reference Documentation, which includes
overviews, Qt topics, and examples not specific to any Qt module.The
configuration files are located in qtdoc/doc/config and the articles in
qtdoc/doc/src. Note that QDoc is located in qttools/src/qdoc.

The instructions in this file assumes that the prerequisite binaries are
compiled and in the $PATH variable.

Prerequisites:
    * qtbase exists
    * "qdoc" built and installed
    * other Qt repositories exist as needed

The Qt Reference Documentation was written with links to the released modules
for Qt. If the modules and repositories do not exist, then the resulting HTML
files will contain broken links.

There are two ways to build the documentation. One way is to compile the
documentation using QDoc and the configuration file (qdocconf) file. The other
way is to use CMake and Ninja by running "ninja docs".

Section 1 Building the qdocconf File

    This method is useful for building separate projects without any
    dependencies to other projects.

    To build using the qdocconf file, run the "qdoc" binary and pass the
    qdocconf file as a parameter. "qdoc" is found in qttools repository. A
    mandatory "outputdir" must be specified.

        $> qdoc doc/config/qtdoc.qdocconf -outputdir html

    Note that QDoc will delete the contents of the "html" output directory.

Section 2 Building using CMake and Ninja

    QMake uses the QT_INSTALL_DOCS variable to determine where the documentation
    for Qt is installed. This method is useful for linking to other Qt modules.

    To see where the documentation will be installed, run:
    $> <Qt-installation-dir>/bin/qtpaths -query QT_INSTALL_DOCS

    To generate the documentation, run:

    $> cd qtdoc  #or whichever repository's root
    $> <Qt-installation-dir>/bin/qt-configure-module .
    $> ninja docs
    $> ninja install

    This procedure also works in the top-level Qt repository. Running the
    commands there will generate the documentation for Qt and install them to
    the path set to the QT_INSTALL_DOCS variable.

Section 3 Building Qt Documentation

    To build the Qt module documentation along with the Qt Reference Documentation,
    run the following:

    $> cd qt           # the top-level Qt repository
    $> configure       # creates the build system for all repositories
    $> ninja docs

    To generate only HTML files, run "ninja html_docs" instead of "ninja docs".

Section 4 Packaging the Documentation

    Required binaries:
    * qhelpgenerator - found in qttools

    To compile the qch file for each module, first enter the output directory
    which contains the .qhp file and generate the QCH file.

    $> cd qtbase/doc/qtdoc              #the default path for QT_INSTALL_DOCS for qtdoc
    $> qhelpgenerator qtdoc.qhp         #creates the QCH file called qtdoc.qch

    Alternatively, modules have a "qch_docs" target:
    $> cd qtbase
    $> make qch_docs #builds the QCH files for modules in qtbase

    The QCH file can then be loaded in Qt Creator.

Section 5 More Information

For more information about Qt's documentation, refer to the Qt Project wiki:
https://wiki.qt.io/Qt_Writing_Guidelines