27 lines
884 B
Diff
27 lines
884 B
Diff
From a0492ee8494bb323f69bf104d6359affd7bf20b1 Mon Sep 17 00:00:00 2001
|
|
From: Alexey Edelev <alexey.edelev@qt.io>
|
|
Date: Wed, 19 Feb 2025 19:48:10 +0100
|
|
Subject: [PATCH] Add the missing linking of CorePrivate to WebChannelQuick
|
|
module
|
|
|
|
It worked previously since Qt::Qml linking propagated it as
|
|
private interface.
|
|
|
|
Change-Id: I65edd1aed1e1ed16df9f6da8ea78bd7d752ee198
|
|
Reviewed-by: Alexandru Croitor <alexandru.croitor@qt.io>
|
|
---
|
|
src/webchannelquick/CMakeLists.txt | 1 +
|
|
1 file changed, 1 insertion(+)
|
|
|
|
diff --git a/src/webchannelquick/CMakeLists.txt b/src/webchannelquick/CMakeLists.txt
|
|
index e96028f..c936bb4 100644
|
|
--- a/src/webchannelquick/CMakeLists.txt
|
|
+++ b/src/webchannelquick/CMakeLists.txt
|
|
@@ -14,5 +14,6 @@ qt_internal_add_qml_module(WebChannelQuick
|
|
DEFINES
|
|
QT_NO_CONTEXTLESS_CONNECT
|
|
LIBRARIES
|
|
+ Qt::CorePrivate
|
|
Qt::WebChannelPrivate
|
|
)
|