Add Qt versions

You can install multiple versions of Qt on the development PC and use them to build your projects. For example, device manufacturers offer special Qt versions for developing applications for their devices.

To view the installed Qt versions, select Preferences > Kits > Qt Versions.

{Qt Versions tab in Kit preferences}

To view detailed information about each Qt version, select it in the list and select Details in the Qt version for section.

To remove invalid Qt versions, select Clean Up.

Register installed Qt versions

You can link to a Qt that Qt Online Installer installed to automatically detect the installed Qt versions. However, you cannot link to a Qt that the system installed with some other package manager, such as your Linux distribution, brew on macOS, or Chocolatey on Windows, nor a self-built Qt. In those cases, select Add in the Qt Versions tab to add the Qt version manually, as instructed in Set up new Qt versions.

To link to a Qt installation:

  1. Select Preferences > Kits > Qt Versions > Link with Qt.

    {Choose Qt Installation dialog}

  2. In the Qt installation path field, enter the path to the directory where you installed Qt.
  3. Select Link with Qt to automatically register Qt versions and kits in the Qt installation directory.
  4. Select Restart Now to restart Qt Creator.

To remove the automatically detected Qt versions from the list, select Remove Link.

If the Qt Versions tab does not show a Qt version under Auto-detected, set it up manually.

You specify the Qt version to use for each kit for building and running your projects in Preferences > Kits.

Set up new Qt versions

To add a Qt version:

  1. Select Preferences > Kits > Qt Versions > Add.
  2. Select the qmake executable for the Qt version to add.
  3. Select the Qt version to view and edit it.
  4. In the Name field, edit the name that Qt Creator suggests for the Qt version.
  5. In the qmake path field, you can change the qmake location.
  6. If the Qt version is for QNX, enter the path to the QNX SDK in the QNX SDK field.

To remove a Qt version that you added manually, select it in the Manual list and then select Remove.

Register documentation

By default, Qt Creator registers only the latest available version of the documentation for each installed Qt module.

To register the documentation sets of all installed Qt versions, choose All from the Register documentation list. To register no Qt documentation at all, choose None. The default behavior is Highest Version Only.

Troubleshoot Qt installations

If Qt Creator detects problems in the installation of a Qt version, it displays warnings and errors beside the name of the Qt version in the list. Select the Qt version to see more information about the issue and suggestions for fixing it.

To verify the installation of a particular Qt version, Qt Creator calls qmake -query and checks that the directories referenced in the output exist. If you installed Qt using Qt Online Installer, run Qt Maintenance Tool to check for updates or to reinstall the Qt version.

Self-built Qt versions

To build projects with a self-built Qt version, add it as described in Set up new Qt versions.

Your Qt has to meet the following minimum requirements:

  • qmake is an executable that understands the -query command-line argument.
  • The bin and include directories have to exist. Qt Creator fetches these directories by running qmake -query.

Add a kit for the Qt version and configure it for CMake.

Qt Creator issues warnings if:

  • libQtCore.so is missing, so Qt Creator cannot detect the ABI.
  • toolchain.cmake is missing. For example, you built Qt with the -static option for an x86 platform.

Try the following:

  • Run make install in the build directory to install Qt into the configured location.
  • Set the value of the CMAKE_PREFIX_PATH variable in Preferences > Kits > Kits > CMake Configuration to the location where you installed Qt.

{Setting the path to a self-built Qt}

See also How To: Manage Kits and Kits.

© 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.