aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/qml/Qt6QmlMacros.cmake6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/qml/Qt6QmlMacros.cmake b/src/qml/Qt6QmlMacros.cmake
index b6091160db..f942238572 100644
--- a/src/qml/Qt6QmlMacros.cmake
+++ b/src/qml/Qt6QmlMacros.cmake
@@ -403,7 +403,8 @@ function(qt6_add_qml_module target)
# When building a static Qt, we need to record information about the compiled resource
# object files to embed them into .prl files.
if(COMMAND qt_internal_record_rcc_object_files)
- qt_internal_record_rcc_object_files("${target}" "${resource_targets}")
+ qt_internal_record_rcc_object_files(
+ "${target}" "${resource_targets}" INSTALL_LOCATION "${arg_INSTALL_LOCATION}")
endif()
endif()
else()
@@ -606,7 +607,8 @@ function(qt6_target_qml_files target)
# When building a static Qt, we need to record information about the compiled resource
# object files to embed them into .prl files.
if(COMMAND qt_internal_record_rcc_object_files)
- qt_internal_record_rcc_object_files("${target}" "${resource_targets}")
+ qt_internal_record_rcc_object_files(
+ "${target}" "${resource_targets}" INSTALL_LOCATION "${qml_module_install_dir}")
endif()
endif()