2015-03-10 08:27:53 +01:00
|
|
|
# Qt Creator
|
|
|
|
|
2020-06-23 08:23:37 +02:00
|
|
|
Qt Creator is a cross-platform, integrated development environment (IDE) for
|
|
|
|
application developers to create applications for multiple desktop, embedded,
|
|
|
|
and mobile device platforms.
|
2009-02-24 16:17:49 +01:00
|
|
|
|
2020-10-05 09:39:41 +02:00
|
|
|
The Qt Creator Manual is available at:
|
|
|
|
|
|
|
|
https://doc.qt.io/qtcreator/index.html
|
|
|
|
|
|
|
|
For an overview of the Qt Creator IDE, see:
|
|
|
|
|
|
|
|
https://doc.qt.io/qtcreator/creator-overview.html
|
|
|
|
|
2015-03-10 08:27:53 +01:00
|
|
|
## Supported Platforms
|
|
|
|
|
2013-04-18 10:49:34 +02:00
|
|
|
The standalone binary packages support the following platforms:
|
2009-02-24 16:17:49 +01:00
|
|
|
|
2024-10-28 16:10:00 +01:00
|
|
|
* Windows 10 (x86_64) or later
|
|
|
|
* Windows 11 (ARM64) or later
|
|
|
|
* (K)Ubuntu Linux 22.04 (x86_64) or later
|
|
|
|
* (K)Ubuntu Linux 24.04 (arm64) or later
|
|
|
|
* macOS 12 or later
|
2009-02-24 16:17:49 +01:00
|
|
|
|
2024-01-16 09:19:16 +01:00
|
|
|
When you compile Qt Creator yourself, the Qt version that you build with
|
|
|
|
determines the supported platforms.
|
|
|
|
|
2018-12-12 10:59:10 +01:00
|
|
|
## Contributing
|
|
|
|
|
|
|
|
For instructions on how to set up the Qt Creator repository to contribute
|
|
|
|
patches back to Qt Creator, please check:
|
|
|
|
|
|
|
|
https://wiki.qt.io/Setting_up_Gerrit
|
|
|
|
|
|
|
|
See the following page for information about our coding standard:
|
|
|
|
|
2020-05-02 07:13:37 +02:00
|
|
|
https://doc.qt.io/qtcreator-extending/coding-style.html
|
2018-12-12 10:59:10 +01:00
|
|
|
|
2015-03-10 08:27:53 +01:00
|
|
|
## Compiling Qt Creator
|
|
|
|
|
2009-12-03 14:52:19 +01:00
|
|
|
Prerequisites:
|
2015-03-10 08:27:53 +01:00
|
|
|
|
2024-04-02 15:35:16 +02:00
|
|
|
* Qt 6.4.3 or later. The Qt version that you use to build Qt Creator defines the
|
2022-07-04 10:58:01 +02:00
|
|
|
minimum platform versions that the result supports
|
2024-04-02 15:35:16 +02:00
|
|
|
(Windows 10, RHEL/CentOS 8.4, Ubuntu 20.04, macOS 10.15 for Qt 6.4.3).
|
2016-10-24 13:55:54 +02:00
|
|
|
* Qt WebEngine module for QtWebEngine based help viewer
|
2015-03-10 08:27:53 +01:00
|
|
|
* On Windows:
|
2024-04-02 15:35:16 +02:00
|
|
|
* MinGW with GCC 11.2 or Visual Studio 2019 or later
|
2024-02-14 12:57:15 +01:00
|
|
|
* Python 3.8 or later (optional, needed for the python enabled debug helper)
|
2020-12-09 14:38:35 +01:00
|
|
|
* Debugging Tools for Windows (optional, for MSVC debugging support with CDB)
|
2024-11-01 09:18:01 +01:00
|
|
|
* On macOS: latest Xcode
|
2022-07-04 10:58:01 +02:00
|
|
|
* On Linux: GCC 9 or later
|
2024-02-14 12:57:15 +01:00
|
|
|
* LLVM/Clang 14 or later (optional, LLVM/Clang 17 is recommended.
|
2021-01-04 18:50:37 +01:00
|
|
|
See [instructions](#getting-llvmclang-for-the-clang-code-model) on how to
|
|
|
|
get LLVM.
|
2022-06-30 11:33:51 +02:00
|
|
|
The ClangFormat plugin uses the LLVM C++ API.
|
2020-12-09 14:38:35 +01:00
|
|
|
Since the LLVM C++ API provides no compatibility guarantee,
|
|
|
|
if later versions don't compile we don't support that version.)
|
|
|
|
* CMake
|
|
|
|
* Ninja (recommended)
|
2013-04-18 10:58:50 +02:00
|
|
|
|
2022-02-27 13:09:51 +01:00
|
|
|
The used toolchain has to be compatible with the one Qt was compiled with.
|
2009-12-03 14:52:19 +01:00
|
|
|
|
2023-03-28 13:38:23 +02:00
|
|
|
### Getting Qt Creator from Git
|
|
|
|
|
|
|
|
The official mirror of the Qt Creator repository is located at
|
|
|
|
https://code.qt.io/cgit/qt-creator/qt-creator.git/. Run
|
|
|
|
|
|
|
|
git clone https://code.qt.io/qt-creator/qt-creator.git
|
|
|
|
|
|
|
|
to clone the Qt Creator sources from there. This creates a checkout of the
|
|
|
|
Qt Creator sources in the `qt-creator/` directory of your current working
|
|
|
|
directory.
|
|
|
|
|
|
|
|
Qt Creator relies on some submodules, like
|
|
|
|
[litehtml](https://github.com/litehtml) for displaying documentation. Get these
|
|
|
|
submodules with
|
|
|
|
|
|
|
|
cd qt-creator # switch to the sources, if you just ran git clone
|
|
|
|
git submodule update --init --recursive
|
|
|
|
|
|
|
|
Note the `--recursive` in this command, which fetches also submodules within
|
|
|
|
submodules, and is necessary to get all the sources.
|
|
|
|
|
|
|
|
The git history contains some coding style cleanup commits, which you might
|
|
|
|
want to exclude for example when running `git blame`. Do this by running
|
|
|
|
|
|
|
|
git config blame.ignoreRevsFile .gitignore-blame
|
|
|
|
|
2020-12-09 14:38:35 +01:00
|
|
|
### Linux and macOS
|
2011-01-12 15:24:56 +01:00
|
|
|
|
2020-12-09 14:38:35 +01:00
|
|
|
These instructions assume that Ninja is installed and in the `PATH`, Qt Creator
|
|
|
|
sources are located at `/path/to/qtcreator_sources`, Qt is installed in
|
|
|
|
`/path/to/Qt`, and LLVM is installed in `/path/to/llvm`.
|
2011-01-12 15:24:56 +01:00
|
|
|
|
2020-12-09 14:38:35 +01:00
|
|
|
Note that if you install Qt via the online installer, the path to Qt must
|
|
|
|
include the version number and compiler ABI. The path to the online installer
|
|
|
|
content is not enough.
|
2011-01-12 15:24:56 +01:00
|
|
|
|
2022-09-15 13:32:04 +02:00
|
|
|
Note that `/path/to/Qt` doesn't imply the full path depth like:
|
2024-06-10 12:31:53 +02:00
|
|
|
`$USER/Qt/6.4.3/gcc_64/lib/cmake/Qt6`, but only `$USER/Qt/6.4.3/gcc_64`.
|
2022-09-15 13:32:04 +02:00
|
|
|
|
2021-01-04 18:50:37 +01:00
|
|
|
See [instructions](#getting-llvmclang-for-the-clang-code-model) on how to
|
2020-12-09 14:38:35 +01:00
|
|
|
get LLVM.
|
2011-01-12 15:24:56 +01:00
|
|
|
|
2020-12-09 14:38:35 +01:00
|
|
|
mkdir qtcreator_build
|
|
|
|
cd qtcreator_build
|
2011-01-12 15:24:56 +01:00
|
|
|
|
2020-12-09 14:38:35 +01:00
|
|
|
cmake -DCMAKE_BUILD_TYPE=Debug -G Ninja "-DCMAKE_PREFIX_PATH=/path/to/Qt;/path/to/llvm" /path/to/qtcreator_sources
|
|
|
|
cmake --build .
|
2011-01-12 15:24:56 +01:00
|
|
|
|
2024-02-13 02:49:42 +03:00
|
|
|
#### Troubleshooting: libxcb plugin not found while using Qt libraries built locally from source
|
|
|
|
|
|
|
|
Ensure all prerequisites for building Qt are installed:
|
|
|
|
https://doc.qt.io/qt-6/linux.html
|
|
|
|
https://doc.qt.io/qt-6/linux-requirements.html
|
|
|
|
|
|
|
|
If they were installed before building Qt and xcb plugin is missing try reinstall them with
|
|
|
|
|
|
|
|
```sh
|
|
|
|
sudo apt-get --reinstall <package_name>
|
|
|
|
```
|
|
|
|
|
|
|
|
Reset building configuration for Qt libraries at '/path/to/qt_sources'
|
|
|
|
|
|
|
|
```sh
|
|
|
|
cmake --build . --target=clean
|
|
|
|
```
|
|
|
|
|
|
|
|
and remove CMakeCache.txt
|
|
|
|
|
|
|
|
```sh
|
|
|
|
rm CMakeCache.txt
|
|
|
|
```
|
|
|
|
|
|
|
|
Try building Qt source again.
|
|
|
|
|
|
|
|
|
2020-12-09 14:38:35 +01:00
|
|
|
### Windows
|
2011-01-12 15:24:56 +01:00
|
|
|
|
2020-12-09 14:38:35 +01:00
|
|
|
These instructions assume that Ninja is installed and in the `PATH`, Qt Creator
|
|
|
|
sources are located at `\path\to\qtcreator_sources`, Qt is installed in
|
|
|
|
`\path\to\Qt`, and LLVM is installed in `\path\to\llvm`.
|
2011-01-12 15:24:56 +01:00
|
|
|
|
2020-12-09 14:38:35 +01:00
|
|
|
Note that if you install Qt via the online installer, the path to Qt must
|
|
|
|
include the version number and compiler ABI. The path to the online installer
|
|
|
|
content is not enough.
|
2011-01-12 15:24:56 +01:00
|
|
|
|
2022-09-15 13:32:04 +02:00
|
|
|
Note that `\path\to\Qt` doesn't imply the full path depth like:
|
2024-06-10 12:31:53 +02:00
|
|
|
`c:\Qt\6.4.3\msvc2019_64\lib\cmake\Qt6`, but only `c:/Qt/6.4.3/msvc2019_64`.
|
2022-09-15 13:32:04 +02:00
|
|
|
The usage of slashes `/` is intentional, since CMake has issues with backslashes `\`
|
|
|
|
in `CMAKE_PREFX_PATH`, they are interpreted as escape codes.
|
|
|
|
|
2021-01-04 18:50:37 +01:00
|
|
|
See [instructions](#getting-llvmclang-for-the-clang-code-model) on how to
|
2020-12-09 14:38:35 +01:00
|
|
|
get LLVM.
|
2011-01-12 15:24:56 +01:00
|
|
|
|
2020-12-09 14:38:35 +01:00
|
|
|
Decide which compiler to use: MinGW or Microsoft Visual Studio.
|
2011-01-12 15:24:56 +01:00
|
|
|
|
2020-12-09 14:38:35 +01:00
|
|
|
MinGW is available via the Qt online installer, for other options see
|
|
|
|
<https://wiki.qt.io/MinGW>. Run the commands below in a shell prompt that has
|
|
|
|
`<path_to_mingw>\bin` in the `PATH`.
|
2016-11-24 17:07:39 +01:00
|
|
|
|
2020-12-09 14:38:35 +01:00
|
|
|
For Microsoft Visual C++ you can use the "Build Tools for Visual Studio". Also
|
|
|
|
install the "Debugging Tools for Windows" from the Windows SDK installer. We
|
|
|
|
strongly recommend using the 64-bit version and 64-bit compilers on 64-bit
|
|
|
|
systems. Open the `x64 Native Tools Command Prompt for VS <version>` from the
|
|
|
|
start menu items that were created for Visual Studio, and run the commands
|
|
|
|
below in it.
|
2011-01-12 15:24:56 +01:00
|
|
|
|
2020-12-09 14:38:35 +01:00
|
|
|
md qtcreator_build
|
|
|
|
cd qtcreator_build
|
2011-01-12 15:24:56 +01:00
|
|
|
|
2020-12-09 14:38:35 +01:00
|
|
|
cmake -DCMAKE_BUILD_TYPE=Debug -G Ninja "-DCMAKE_PREFIX_PATH=/path/to/Qt;/path/to/llvm" \path\to\qtcreator_sources
|
|
|
|
cmake --build .
|
2011-01-12 15:24:56 +01:00
|
|
|
|
2020-12-09 14:38:35 +01:00
|
|
|
Qt Creator can be registered as a post-mortem debugger. This can be done in the
|
|
|
|
options page or by running the tool qtcdebugger with administrative privileges
|
|
|
|
passing the command line options -register/unregister, respectively.
|
|
|
|
Alternatively, the required registry entries
|
2011-01-12 15:24:56 +01:00
|
|
|
|
2020-12-09 14:38:35 +01:00
|
|
|
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\AeDebug
|
|
|
|
HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Windows NT\CurrentVersion\AeDebug
|
2011-01-12 15:24:56 +01:00
|
|
|
|
2020-12-09 14:38:35 +01:00
|
|
|
can be modified using the registry editor regedt32 to contain
|
2016-02-01 10:15:32 +01:00
|
|
|
|
2020-12-09 14:38:35 +01:00
|
|
|
qtcreator_build\bin\qtcdebugger %ld %ld
|
2016-02-01 10:15:32 +01:00
|
|
|
|
2020-12-09 14:38:35 +01:00
|
|
|
When using a self-built version of Qt Creator as post-mortem debugger, it needs
|
|
|
|
to be able to find all dependent Qt-libraries and plugins when being launched
|
|
|
|
by the system. The easiest way to do this is to create a self-contained Qt
|
|
|
|
Creator by installing it and installing its dependencies. See "Options" below
|
|
|
|
for details.
|
2011-01-12 15:24:56 +01:00
|
|
|
|
2020-12-09 14:38:35 +01:00
|
|
|
Note that unlike on Unix, you cannot overwrite executables that are running.
|
|
|
|
Thus, if you want to work on Qt Creator using Qt Creator, you need a separate
|
|
|
|
installation of it. We recommend using a separate, release-built version of Qt
|
|
|
|
Creator to work on a debug-built version of Qt Creator.
|
2015-03-10 08:27:53 +01:00
|
|
|
|
2023-05-10 13:32:28 +08:00
|
|
|
Alternatively, take the following template of `CMakeUserPresets.json` for
|
|
|
|
reference. Write your own configurePreset inheriting `cmake-plugin-minimal` in
|
|
|
|
`CMakeUserPresets.json` to build with IDEs (such as QtCreator, VSCode,
|
|
|
|
CLion...etc) locally:
|
|
|
|
|
|
|
|
```json
|
|
|
|
{
|
|
|
|
"version": 4,
|
|
|
|
"cmakeMinimumRequired": {
|
|
|
|
"major": 3,
|
|
|
|
"minor": 23,
|
|
|
|
"patch": 0
|
|
|
|
},
|
|
|
|
"configurePresets": [
|
|
|
|
{
|
|
|
|
"name": "custom",
|
|
|
|
"displayName": "custom",
|
|
|
|
"description": "custom",
|
|
|
|
"inherits": "cmake-plugin-minimal",
|
|
|
|
"binaryDir": "${sourceDir}/build/${presetName}",
|
|
|
|
"toolset": {
|
|
|
|
"value": "v142,host=x64",
|
|
|
|
"strategy": "external"
|
|
|
|
},
|
|
|
|
"architecture": {
|
|
|
|
"value": "x64",
|
|
|
|
"strategy": "external"
|
|
|
|
},
|
|
|
|
"cacheVariables": {
|
|
|
|
"CMAKE_CXX_COMPILER": "cl.exe",
|
|
|
|
"CMAKE_C_COMPILER": "cl.exe",
|
2024-06-10 12:31:53 +02:00
|
|
|
"CMAKE_PREFIX_PATH": "c:/Qt/6.4.3/msvc2019_64"
|
2023-05-10 13:32:28 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2020-12-09 14:38:35 +01:00
|
|
|
### Options
|
2015-03-10 08:27:53 +01:00
|
|
|
|
2020-12-09 14:38:35 +01:00
|
|
|
If you do not have Ninja installed and in the `PATH`, remove `-G Ninja` from
|
|
|
|
the first `cmake` call. If you want to build in release mode, change the build
|
|
|
|
type to `-DCMAKE_BUILD_TYPE=Release`. You can also build with release
|
|
|
|
optimizations but debug information with `-DCMAKE_BUILD_TYPE=RelWithDebInfo`.
|
2015-03-10 08:27:53 +01:00
|
|
|
|
2021-09-07 13:13:30 +02:00
|
|
|
You can find more options in the generated CMakeCache.txt file. For instance,
|
|
|
|
building of Qbs together with Qt Creator can be enabled with `-DBUILD_QBS=ON`.
|
|
|
|
|
2023-02-08 10:50:10 +01:00
|
|
|
Installation is not needed. You can run Qt Creator directly from the build
|
|
|
|
directory. On Windows, make sure that your `PATH` environment variable points to
|
|
|
|
all required DLLs, like Qt and LLVM. On Linux and macOS, the build already
|
|
|
|
contains the necessary `RPATH`s for the dependencies.
|
|
|
|
|
|
|
|
If you want to install Qt Creator anyway, that is however possible using
|
2014-03-26 12:03:35 +01:00
|
|
|
|
2020-12-09 14:38:35 +01:00
|
|
|
cmake --install . --prefix /path/to/qtcreator_install
|
2014-03-26 12:03:35 +01:00
|
|
|
|
2020-12-09 14:38:35 +01:00
|
|
|
To create a self-contained Qt Creator installation, including all dependencies
|
|
|
|
like Qt and LLVM, additionally run
|
2014-03-26 12:03:35 +01:00
|
|
|
|
2020-12-09 14:38:35 +01:00
|
|
|
cmake --install . --prefix /path/to/qtcreator_install --component Dependencies
|
2011-01-12 15:24:56 +01:00
|
|
|
|
2023-02-08 10:50:10 +01:00
|
|
|
To install development files like headers, CMake files, and `.lib` files on
|
|
|
|
Windows, run
|
|
|
|
|
|
|
|
cmake --install . --prefix /path/to/qtcreator_install --component Devel
|
|
|
|
|
|
|
|
If you used the `RelWithDebInfo` configuration and want debug information to be
|
|
|
|
available to the installed Qt Creator, run
|
|
|
|
|
|
|
|
cmake --install . --prefix /path/to/qtcreator_install --component DebugInfo
|
|
|
|
|
2022-12-16 10:40:42 +01:00
|
|
|
### Perf Profiler Support
|
|
|
|
|
|
|
|
Support for the [perf](https://perf.wiki.kernel.org/index.php/Main_Page) profiler
|
|
|
|
requires the `perfparser` tool that is part of the Qt Creator source package, and also
|
|
|
|
part of the Qt Creator Git repository in form of a submodule in `src/tools/perfparser`.
|
|
|
|
|
|
|
|
Compilation of `perfparser` requires ELF and DWARF development packages.
|
|
|
|
You can either download and extract a prebuilt package from
|
|
|
|
https://download.qt.io/development_releases/prebuilt/elfutils/ and add the
|
|
|
|
directory to the `CMAKE_PREFIX_PATH` when configuring Qt Creator,
|
|
|
|
or install the `libdw-dev` package on Debian-style Linux systems.
|
|
|
|
|
|
|
|
You can also point Qt Creator to a separate installation of `perfparser` by
|
|
|
|
setting the `PERFPROFILER_PARSER_FILEPATH` environment variable to the full
|
|
|
|
path to the executable.
|
2022-07-04 14:21:13 +02:00
|
|
|
|
2020-12-09 14:38:35 +01:00
|
|
|
## Getting LLVM/Clang for the Clang Code Model
|
2016-11-24 17:07:39 +01:00
|
|
|
|
2022-06-30 11:33:51 +02:00
|
|
|
The Clang code model uses `Clangd` and the ClangFormat plugin depends on the
|
|
|
|
LLVM/Clang libraries. The currently recommended LLVM/Clang version is 14.0.
|
2016-11-24 17:07:39 +01:00
|
|
|
|
|
|
|
### Prebuilt LLVM/Clang packages
|
|
|
|
|
|
|
|
Prebuilt packages of LLVM/Clang can be downloaded from
|
2021-01-04 18:58:41 +01:00
|
|
|
https://download.qt.io/development_releases/prebuilt/libclang/
|
2016-11-24 17:07:39 +01:00
|
|
|
|
|
|
|
This should be your preferred option because you will use the version that is
|
2019-06-18 16:21:02 +02:00
|
|
|
shipped together with Qt Creator (with backported/additional patches). In
|
|
|
|
addition, MinGW packages for Windows are faster due to profile-guided
|
|
|
|
optimization. If the prebuilt packages do not match your configuration, you
|
|
|
|
need to build LLVM/Clang manually.
|
2016-11-24 17:07:39 +01:00
|
|
|
|
2018-01-16 10:32:41 +01:00
|
|
|
If you use the MSVC compiler to build Qt Creator the suggested way is:
|
|
|
|
1. Download both MSVC and MinGW packages of libclang.
|
|
|
|
2. Use the MSVC version of libclang during the Qt Creator build.
|
|
|
|
3. Prepend PATH variable used for the run time with the location of MinGW version of libclang.dll.
|
|
|
|
4. Launch Qt Creator.
|
|
|
|
|
2016-11-24 17:07:39 +01:00
|
|
|
### Building LLVM/Clang manually
|
|
|
|
|
|
|
|
You need to install CMake in order to build LLVM/Clang.
|
|
|
|
|
|
|
|
Build LLVM/Clang by roughly following the instructions at
|
|
|
|
http://llvm.org/docs/GettingStarted.html#git-mirror:
|
|
|
|
|
2019-06-19 09:26:38 +02:00
|
|
|
1. Clone LLVM/Clang and checkout a suitable branch
|
2016-11-24 17:07:39 +01:00
|
|
|
|
2024-06-10 12:31:53 +02:00
|
|
|
git clone -b release_17.0.6-based --recursive https://code.qt.io/clang/llvm-project.git
|
2016-11-24 17:07:39 +01:00
|
|
|
|
2018-10-12 01:27:55 +03:00
|
|
|
2. Build and install LLVM/Clang
|
2016-11-24 17:07:39 +01:00
|
|
|
|
|
|
|
mkdir build
|
|
|
|
cd build
|
|
|
|
|
|
|
|
For Linux/macOS:
|
|
|
|
|
2019-11-21 13:14:21 +01:00
|
|
|
cmake \
|
|
|
|
-D CMAKE_BUILD_TYPE=Release \
|
|
|
|
-D LLVM_ENABLE_RTTI=ON \
|
|
|
|
-D LLVM_ENABLE_PROJECTS="clang;clang-tools-extra" \
|
|
|
|
-D CMAKE_INSTALL_PREFIX=<installation location> \
|
|
|
|
../llvm-project/llvm
|
|
|
|
cmake --build . --target install
|
2016-11-24 17:07:39 +01:00
|
|
|
|
|
|
|
For Windows:
|
|
|
|
|
2019-11-21 13:14:21 +01:00
|
|
|
cmake ^
|
2020-07-13 16:58:04 +03:00
|
|
|
-G Ninja ^
|
2019-11-21 13:14:21 +01:00
|
|
|
-D CMAKE_BUILD_TYPE=Release ^
|
|
|
|
-D LLVM_ENABLE_RTTI=ON ^
|
|
|
|
-D LLVM_ENABLE_PROJECTS="clang;clang-tools-extra" ^
|
|
|
|
-D CMAKE_INSTALL_PREFIX=<installation location> ^
|
|
|
|
..\llvm-project\llvm
|
|
|
|
cmake --build . --target install
|
2016-11-24 17:07:39 +01:00
|
|
|
|
2021-06-30 15:13:58 +02:00
|
|
|
# Licenses and Attributions
|
2015-03-10 08:27:53 +01:00
|
|
|
|
2021-06-30 15:13:58 +02:00
|
|
|
Qt Creator is available under commercial licenses from The Qt Company,
|
|
|
|
and under the GNU General Public License version 3,
|
|
|
|
annotated with The Qt Company GPL Exception 1.0.
|
2024-01-15 08:27:31 +01:00
|
|
|
See [LICENSE.GPL3-EXCEPT](LICENSE.GPL3-EXCEPT) for the details.
|
2021-06-30 15:13:58 +02:00
|
|
|
|
2023-09-18 09:24:25 +02:00
|
|
|
For more information about the third-party components that Qt Creator
|
|
|
|
includes, see the
|
|
|
|
[Acknowledgements section in the documentation](https://doc.qt.io/qtcreator/creator-acknowledgements.html).
|
2009-02-24 16:17:49 +01:00
|
|
|
|