2012-12-11 21:08:15 +00:00
|
|
|
#
|
|
|
|
# W A R N I N G
|
|
|
|
# -------------
|
|
|
|
#
|
|
|
|
# This file is not part of the Qt API. It exists purely as an
|
|
|
|
# implementation detail. It may change from version to version
|
|
|
|
# without notice, or even be removed.
|
|
|
|
#
|
|
|
|
# We mean it.
|
|
|
|
#
|
|
|
|
|
2012-08-06 18:39:49 +00:00
|
|
|
equals(TEMPLATE, app): TEMPLATE = aux
|
|
|
|
|
|
|
|
isEmpty(TARGETPATH): error("Must set TARGETPATH (QML import name)")
|
|
|
|
|
2015-06-19 23:14:07 +00:00
|
|
|
qmldir_file = $$_PRO_FILE_PWD_/qmldir
|
2012-08-06 18:39:49 +00:00
|
|
|
|
2016-08-10 20:58:43 +00:00
|
|
|
fq_qml_files =
|
2012-08-06 18:39:49 +00:00
|
|
|
for(qmlf, QML_FILES): fq_qml_files += $$absolute_path($$qmlf, $$_PRO_FILE_PWD_)
|
|
|
|
|
2016-08-10 20:58:43 +00:00
|
|
|
fq_aux_qml_files =
|
|
|
|
for(qmlf, AUX_QML_FILES): fq_aux_qml_files += $$absolute_path($$qmlf, $$_PRO_FILE_PWD_)
|
|
|
|
|
2016-06-08 14:48:28 +00:00
|
|
|
load(qt_build_paths)
|
|
|
|
|
|
|
|
qml1_target {
|
|
|
|
DESTDIR = $$MODULE_BASE_OUTDIR/imports/$$TARGETPATH
|
2012-10-26 13:26:34 +00:00
|
|
|
instbase = $$[QT_INSTALL_IMPORTS]
|
2016-06-08 14:48:28 +00:00
|
|
|
} else {
|
|
|
|
DESTDIR = $$MODULE_BASE_OUTDIR/qml/$$TARGETPATH
|
2012-10-15 20:23:13 +00:00
|
|
|
instbase = $$[QT_INSTALL_QML]
|
2016-06-08 14:48:28 +00:00
|
|
|
}
|
2012-10-26 13:26:34 +00:00
|
|
|
|
2015-06-19 23:14:07 +00:00
|
|
|
!qml1_target:static: CONFIG += builtin_resources
|
|
|
|
|
|
|
|
builtin_resources {
|
|
|
|
URITARGET = $$replace(URI, "\\.", "_")
|
2016-08-10 20:58:43 +00:00
|
|
|
# Ensure the QML files are included in the resources. In static builds,
|
|
|
|
# the QML engine reads also the qmldir file from the resources.
|
|
|
|
$${URITARGET}.files = $$qmldir_file $$fq_qml_files
|
2015-06-19 23:14:07 +00:00
|
|
|
# qt-project.org/imports is the path used for locating imports inside the resources
|
|
|
|
$${URITARGET}.prefix = /qt-project.org/imports/$$TARGETPATH
|
|
|
|
RESOURCES += $${URITARGET}
|
|
|
|
}
|
|
|
|
|
2012-08-06 18:39:49 +00:00
|
|
|
# Install rules
|
2012-08-06 20:27:26 +00:00
|
|
|
qmldir.base = $$_PRO_FILE_PWD_
|
2016-08-10 20:58:43 +00:00
|
|
|
# Tools need qmldir and plugins.qmltypes always installed on the file system
|
|
|
|
qmldir.files = $$qmldir_file $$fq_aux_qml_files
|
|
|
|
!builtin_resources: qmldir.files += $$fq_qml_files
|
2012-10-26 13:26:34 +00:00
|
|
|
qmldir.path = $$instbase/$$TARGETPATH
|
2012-08-06 18:39:49 +00:00
|
|
|
INSTALLS += qmldir
|
2016-04-22 13:31:27 +00:00
|
|
|
|
2016-08-15 12:42:27 +00:00
|
|
|
!debug_and_release|!build_all|CONFIG(release, debug|release) {
|
|
|
|
!prefix_build {
|
|
|
|
COPIES += qmldir
|
|
|
|
} else {
|
2016-08-10 20:58:43 +00:00
|
|
|
# For non-installed static builds, tools need qmldir and plugins.qmltypes
|
|
|
|
# files in the build dir
|
|
|
|
qmldir2build.files = $$qmldir_file $$fq_aux_qml_files
|
2016-08-15 12:42:27 +00:00
|
|
|
qmldir2build.path = $$DESTDIR
|
|
|
|
COPIES += qmldir2build
|
|
|
|
}
|
2016-06-08 14:48:28 +00:00
|
|
|
}
|