Cross-platform software libraries and APIs
Qt Creator IDE and productivity tools
UI Design tool for UI composition
GUI test automation
Code coverage analysis
Test results management and analysis
Software static code analysis
Software architecture verification
The latest version of Qt.
Make the most of Qt tools, with options for commercial licensing, subscriptions, or open-source.
Explore Qt features, the Framework essentials, modules, tools & add-ons.
The project offers PySide6 - the official Python bindings that enhance Python applications.
Qt empowers productivity across the entire product development lifecycle, from UI design and software development to quality assurance and deployment. Find the solution that best suits your needs.
Insight into the evolution and importance of user-centric trends and strategies.
Learn how to shorten development times, improve user experience, and deploy anywhere.
Tips on efficient development, software architecture, and boosting team happiness.
Get the latest resources, check out upcoming events, and see who’s innovating with Qt.
Whether you're a beginner or a seasoned Qt pro, we have all the help and support you need to succeed.
December 16, 2024 by Cristian Adam | Comments
Here are the new CMake features and fixes in Qt Creator 15:
Qt Creator 15 allows adding subprojects for CMake projects. This can be done via right-click context menu on the project and selecting New Subproject …
This newly added subproject can be independently built / clean / rebuild. Either from the right-click context menu, or from the top-level Build menu.
Notice that the Forms directory has the pencil icon in the same way as a QMake project!
This is available for the projects that have the Package manager auto-setup enabled, since currently it’s the only way for Qt Creator to integrate the following piece of CMake code:
option(QT_CREATOR_SOURCE_GROUPS "Qt Creator source groups extensions" ON) if (QT_CREATOR_SOURCE_GROUPS) source_group("Resources" REGULAR_EXPRESSION "\\.(pdf|plist|png|jpeg|jpg|storyboard|xcassets|qrc|svg|gif|ico|webp)$") source_group("Forms" REGULAR_EXPRESSION "\\.(ui)$") source_group("State charts" REGULAR_EXPRESSION "\\.(scxml)$") endif()
Below you can see that every subproject, which is marked as a folder with the CMake logo icon, now includes an Open … entry in its context menu. This action allows access to the corresponding CMakeLists.txt
file.
Notably, each CMake target has a file node with its defining CMakeLists.txt
file in the Projects view.
This change also renders the Simplify Tree view less cluttered with CMakeLists.txt
entries.
When using the FOLDER property in CMake projects for organising their structures, Qt Creator will now reflect and display these folder hierarchies.
Qt Creator 15 can load a CMake project via the <build-dir>/CMakeCache.txt
file. This is equivalent to opening the CMakeLists.txt
project and then importing the <build-dir>
configuration.
The objective here is to display the text Holiday Greetings 🌲✨ ! in the console output. Furthermore, the project has to reside within a folder named HolidayGreetings🎄✨.
The Windows configuration is a standard English (United States) language setting, as seen below:
To fulfill the need to output UTF-8 Unicode text within an English locale environment, we will use the {fmt} library, which will be supplied by Conan. The source code for CMakeLists.txt
, main.cpp
and conanfile.txt
is below:
cmake_minimum_required(VERSION 3.16)
project(HolidayGreetings🌲✨)
find_package(fmt CONFIG REQUIRED)
add_executable(HolidayGreetings main.cpp) target_link_libraries(HolidayGreetings PRIVATE fmt::fmt)
#include <fmt/printf.h>
int main() { fmt::print("Holiday Greetings 🌲✨ !\n"); return 0; }
[requires]
fmt/11.0.0
Download the latest release here: www.qt.io/download.
Qt 6.8 release focuses on technology trends like spatial computing & XR, complex data visualization in 2D & 3D, and ARM-based development for desktop.
Check out all our open positions here and follow us on Instagram to see what it's like to be #QtPeople.
Dec 16, 2024
We've recently discovered that the QML code editor in Qt Creator 14.0 and..
Dec 2, 2024
We are happy to announce the release of Qt Creator 15! Qt Creator 15 is..
Dec 2, 2024
We are excited to announce Qt for MCUs 2.9, which comes with many key..
Qt Group includes The Qt Company Oy and its global subsidiaries and affiliates.