Qt Creator allows you to have multiple versions of Qt installed on your development PC and use different versions to build your projects. For example, device manufacturers provide special Qt versions for developing applications for their devices.
Qt Creator automatically detects the Qt versions that are registered by your system or by the Qt Installer. To view detailed information for each Qt version, select it in the list and select 细节 在 Qt version for 章节。
To remove invalid Qt versions, select Clean Up .
You can link to a Qt that you installed using the Qt Maintenance Tool to automatically register the installed Qt versions. However, you cannot link to Qt versions that were installed by the system using 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 在 Qt Versions tab to add the Qt version manually, as instructed in Setting Up New Qt Versions .
To link to a Qt installation:
To remove the automatically detected Qt versions from the list, select Remove Link .
If a Qt version is still not listed in the Qt Versions tab under Auto-detected , you have to set it up manually, as described in the following section.
You specify the Qt version to use for each kit for building and running your projects in 工具 > Options > Kits , as described in Specifying Kit Settings .
To add a Qt version:
To remove a Qt version that you added manually, select it in the Manual list and then select 移除 .
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 所有 从 Register documentation list. To register no Qt documentation at all, choose None . The default behavior is Highest Version Only .
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 determine whether a particular Qt version is installed correctly, Qt Creator calls
qmake -query
and checks that the directories referenced in the output exist. When Qt Creator complains about the installation of a self-built Qt version, try running
make install
in the build directory to actually install Qt into the configured location. If you installed Qt using the Qt Installer, run the Qt maintenance tool to check for updates or to reinstall the Qt version.
If your build of Qt is incomplete but you still want to use QMake as build system, you need to ensure the following minimum requirements to be able to use that setup with Qt Creator.
-query
command line argument.
bin
and
include
directories have to exist. Qt Creator fetches these directories by running
qmake -query
.
mkspecs
directory should be complete enough to parse .pro files.
If your Qt version has no
libQtCore.so
, Qt Creator is unable to detect the ABI.