summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexey Edelev <alexey.edelev@qt.io>2022-01-12 18:07:19 +0100
committerQt Cherry-pick Bot <cherrypick_bot@qt-project.org>2022-01-13 11:09:21 +0000
commite01b618b5e50d378a7ef9caae61982d7a66ebfff (patch)
treef62599a0c0b759feb398e9daeaa422f565518361
parent9e485c619206391fe56fa7babc7bd21cedbf81f6 (diff)
Use PRIVATE linking for plugins
Fixes: QTBUG-99760 Change-Id: I28e6f7e5dfe605224a654c98b51cc1f686d648b2 Reviewed-by: Thiago Macieira <thiago.macieira@intel.com> Reviewed-by: Joerg Bornemann <joerg.bornemann@qt.io> (cherry picked from commit 32b32ece929f963a5ea3bd06fc7fa010c213a415) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
-rw-r--r--src/plugins/shellintegration/qt-shell/CMakeLists.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/shellintegration/qt-shell/CMakeLists.txt b/src/plugins/shellintegration/qt-shell/CMakeLists.txt
index 99fbfda3f..bf466d322 100644
--- a/src/plugins/shellintegration/qt-shell/CMakeLists.txt
+++ b/src/plugins/shellintegration/qt-shell/CMakeLists.txt
@@ -9,7 +9,7 @@ qt_internal_add_plugin(QWaylandQtShellIntegrationPlugin
main.cpp
qwaylandqtshellintegration.cpp qwaylandqtshellintegration.h
qwaylandqtsurface.cpp qwaylandqtsurface_p.h
- PUBLIC_LIBRARIES
+ LIBRARIES
Qt::Core
Qt::Gui
Qt::GuiPrivate
@@ -26,6 +26,6 @@ qt6_generate_wayland_protocol_client_sources(QWaylandQtShellIntegrationPlugin
#####################################################################
qt_internal_extend_target(QWaylandQtShellIntegrationPlugin CONDITION QT_FEATURE_xkbcommon
- PUBLIC_LIBRARIES
+ LIBRARIES
XKB::XKB
)