mirror of
http://code.qt.io/yocto/meta-qt6.git
synced 2026-01-01 13:58:07 +00:00
24 lines
838 B
Diff
24 lines
838 B
Diff
From 5a8210389e7adb1c985e4c4a29d0a52c7b6ecb38 Mon Sep 17 00:00:00 2001
|
|
From: Samuli Piippo <samuli.piippo@qt.io>
|
|
Date: Fri, 24 Jan 2020 09:34:19 +0200
|
|
Subject: [PATCH] Use correct default install dir for qml files
|
|
|
|
Change-Id: I26b89d0e172465de3df36ffb0b2ea92975e99a2a
|
|
---
|
|
src/qml/Qt6QmlMacros.cmake | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/src/qml/Qt6QmlMacros.cmake b/src/qml/Qt6QmlMacros.cmake
|
|
index 71e6b2230c..cc01b54106 100644
|
|
--- a/src/qml/Qt6QmlMacros.cmake
|
|
+++ b/src/qml/Qt6QmlMacros.cmake
|
|
@@ -156,7 +156,7 @@ function(qt6_add_qml_module target)
|
|
endif()
|
|
|
|
if (NOT arg_INSTALL_LOCATION)
|
|
- set(arg_INSTALL_LOCATION "${Qt6_DIR}/../../../qml/${arg_TARGET_PATH}")
|
|
+ set(arg_INSTALL_LOCATION "${INSTALL_QMLDIR}/${arg_TARGET_PATH}")
|
|
endif()
|
|
|
|
set_target_properties(${target}
|