qtdeclarative/examples
Kai Köhne 2e6403f8bf Examples: Use versioned CMake targets for Qt modules
Use e.g. Qt6::Core instead of Qt::Core. This is better matching the
find_package(Qt6 ...) call, and also avoids issues that the versionless
targets have.

Pick-to: 6.5
Task-number: QTBUG-113277
Change-Id: Ib80f885e9f73fb9ad54b9e9b22cae2318877dc07
Reviewed-by: Alexey Edelev <alexey.edelev@qt.io>
Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org>
2023-05-02 12:12:35 +02:00
..
qml Examples: Use versioned CMake targets for Qt modules 2023-05-02 12:12:35 +02:00
qmltest Examples: Use versioned CMake targets for Qt modules 2023-05-02 12:12:35 +02:00
quick Examples: Use versioned CMake targets for Qt modules 2023-05-02 12:12:35 +02:00
quickcontrols Examples: Use versioned CMake targets for Qt modules 2023-05-02 12:12:35 +02:00
CMakeLists.txt Examples: Use versioned CMake targets for Qt modules 2023-05-02 12:12:35 +02:00
README Doc: Revamp "Extending QML" examples into a tutorial 2023-03-30 18:02:16 +02:00
examples.pro qmake: Fix build of quickcontrols examples 2022-12-14 17:39:55 +01:00

README

The Qt Quick module provides the basic elements to specify and implement your
user interface declaratively, using the Qt Meta-Object Language (QML). The
Qt QML module provides the engine and language infrastructure for QML itself.
This language is very expressive and human readable, and can be used by
designers to actually implement their UI vision. QML UIs can integrate
with C++ code in many ways, including being loaded as a part of a C++ UI
and loading data models from C++ and interacting with them.

Most of these examples can be viewed directly with the
QML viewer utility, without requiring compilation.

Documentation for these examples can be found via the Examples and Tutorials
link in the main Qt documentation.