1// Copyright (C) 2023 The Qt Company Ltd.
2// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GFDL-1.3-no-invariants-only
5\page qt-cmake-policy-qtp0001.html
6\ingroup qt-cmake-policies
9\keyword qt_cmake_policy_qtp0001
11\summary {':/qt/qml/' is the default resource prefix for QML modules.}
13This policy was introduced in Qt 6.5. It changes where
14\l{qt_add_qml_module}{qt_add_qml_module()} stores QML resources in
17Enabling this policy ensures that your QML module is placed under
18a default \l {QML Import Path}{import path}, and its types can be
19found without manual calls to \l QQmlEngine::addImportPath.
21The \c OLD behavior of this policy is that, the \c RESOURCE_PREFIX argument for
22\c{qt_add_qml_module()} defaults to \c{":/"}.
24The \c NEW behavior of this policy is that the \c RESOURCE_PREFIX argument
25for \c{qt_add_qml_module()} defaults to \c{":/qt/qml/"}. The new behavior
26ensures that modules are put into the \l{QML Import Path} and can be
27found without further setup.
29Qt 6.5 issues warnings if you do not pass any of the following arguments to the
30\c qt_add_qml_module command: \c RESOURCE_PREFIX, \c NO_RESOURCE_TARGET_PATH.
31Use the \l qt_policy command to suppress the warning by explicitly setting
32the policy to \c OLD or \c NEW.
34\note The \c{OLD} behavior of a policy is deprecated, and may
35be removed in the future.
37\sa qt_policy, {qt6_standard_project_setup}{qt_standard_project_setup()},
38 qt_cmake_policies, qt_add_qml_module