aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/doc/src/cmake/qt_target_compile_qml_to_cpp.qdoc
blob: 2d1da9efe84f8ae39d38ae43eddb978e6bd08179 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
/****************************************************************************
**
** Copyright (C) 2022 The Qt Company Ltd.
** Contact: https://www.qt.io/licensing/
**
** This file is part of the documentation of the Qt Toolkit.
**
** $QT_BEGIN_LICENSE:FDL$
** Commercial License Usage
** Licensees holding valid commercial Qt licenses may use this file in
** accordance with the commercial license agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
** a written agreement between you and The Qt Company. For licensing terms
** and conditions see https://www.qt.io/terms-conditions. For further
** information use the contact form at https://www.qt.io/contact-us.
**
** GNU Free Documentation License Usage
** Alternatively, this file may be used under the terms of the GNU Free
** Documentation License version 1.3 as published by the Free Software
** Foundation and appearing in the file included in the packaging of
** this file. Please review the following information to ensure
** the GNU Free Documentation License version 1.3 requirements
** will be met: https://www.gnu.org/licenses/fdl-1.3.html.
** $QT_END_LICENSE$
**
****************************************************************************/

/*!
\page qt_target_compile_qml_to_cpp.html
\ingroup cmake-commands-qtqml

\title qt_target_compile_qml_to_cpp
\target qt6_target_compile_qml_to_cpp

\brief Compiles QML files (.qml) to C++ source code with \l{Qml Type Compiler}{qmltc}.

\section1 Synopsis

\badcode
qt_target_compile_qml_to_cpp(
    target
    QML_FILES ...
    [NAMESPACE namespace]
    [IMPORT_PATHS ...]
)

\endcode

\versionlessCMakeCommandsNote qt6_target_compile_qml_to_cpp()

\section1 Description

By default, \l{Qml Type Compiler}{qmltc} creates lower-case \c{.h} and \c{.cpp}
files for a given \c{.qml} file. For example, \c{Foo.qml} ends up being compiled
into \c{foo.h} and \c{foo.cpp}.

The created C++ files are placed into a dedicated \c{.qmltc/<target>/}
sub-directory of the \c BINARY_DIR of the \c target passed as an argument to
this command. These files are then automatically added to the target sources and
compiled as Qt C++ code along with other source files.

\note This command is in technology preview and may change in future releases.

\section1 Arguments

The \c target specifies the name of the binary that the QML files belong to. In
order for the compilation to succeed, the target is expected to be a valid QML
module, defined with qt_add_qml_module() command.

\c QML_FILES lists the \c{.qml} files that are going to be compiled into C++. In
most cases, all the target's QML files would be specified in the QML_FILES. This
way, QML_FILES argument of this command is equivalent to QML_FILES argument of
the qt_add_qml_module() command.

\c NAMESPACE argument defines a namespace, in which the generated C++ code
resides. By default, no namespace is specified for user projects. The code
generated from Qt's own sources is put under a QT_NAMESPACE namespace.

\c IMPORT_PATHS can be used to add locations that contain QML modules. The
specified entries are passed to qmltc and allow to correctly import modules that
do not reside under the location specified by QLibraryInfo::QmlImportsPath.

While processing QML_FILES, the following source file properties are respected:
\list
    \li \c{QT_QMLTC_FILE_BASENAME}: use this source file property to specify a
        non-default .h and .cpp file name, which might be useful to e.g. resolve
        conflicting file names (imagine you have main.qml that is being
        compiled, but main.h already exists, so #include "main.h" might not do
        what you expect it to do). QT_QMLTC_FILE_BASENAME is expected to be a
        file name (without extension), so any preceding directory is ignored.
        Unlike in the case of default behavior, the QT_QMLTC_FILE_BASENAME is
        not lower-cased.
\endlist

*/