summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoerg Bornemann <joerg.bornemann@qt.io>2021-07-06 18:24:10 +0200
committerJoerg Bornemann <joerg.bornemann@qt.io>2021-07-06 21:05:43 +0200
commitf67e684df6986575aaa27f6a9a660a621f98411b (patch)
treea2ad48eafb0a51a4fb248e5c753e094b2a6b7c68
parent812e69f7b7064d7edc7097e0719e358c22acb519 (diff)
CMake: Don't give plugins PUBLIC usage requirements
The pro2cmake.py conversion script faithfully reproduced the .pro files for the plugins, which specified the libraries as public. But in CMake, the implications of this are that public usage requirements should then be propagated to consumers. We don't expect any consumers, since a plugin is created as a MODULE library in CMake, so for Windows we don't even have an import library to link with. The only exception to this is for static builds where plugins are created as STATIC libraries instead, but only in certain controlled situations do we then link to plugins. Even then, usage requirements are not expected to propagate to the consumers, so these relationships should always be specified as private. Pick-to: 6.2 Task-number: QTBUG-90819 Change-Id: I7db09e5cc0f0e7179d2d6da2acf3c1eadc02f8e2 Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org> Reviewed-by: Alexandru Croitor <alexandru.croitor@qt.io>
-rw-r--r--src/plugins/opcua/open62541/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/opcua/open62541/CMakeLists.txt b/src/plugins/opcua/open62541/CMakeLists.txt
index f28a331..42410e3 100644
--- a/src/plugins/opcua/open62541/CMakeLists.txt
+++ b/src/plugins/opcua/open62541/CMakeLists.txt
@@ -16,7 +16,7 @@ qt_internal_add_plugin(QOpen62541Plugin
qopen62541subscription.cpp qopen62541subscription.h
qopen62541utils.cpp qopen62541utils.h
qopen62541valueconverter.cpp qopen62541valueconverter.h
- PUBLIC_LIBRARIES
+ LIBRARIES
Qt::Core
Qt::CorePrivate
Qt::Network