aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJoerg Bornemann <joerg.bornemann@qt.io>2021-05-25 15:01:50 +0200
committerJoerg Bornemann <joerg.bornemann@qt.io>2021-05-25 15:33:49 +0200
commitca7557335b3f23d97be8817797335f72cfb5d2cb (patch)
tree04adad7ea1a5e9093cc75abd4d10c72b406e11dc /src
parent82aa2a2a7b4bbd08073f892d60d3285afb2695e6 (diff)
CMake: Disable usage of CMake API compatibility wrappers
Setting the QT_NO_INTERNAL_COMPATIBILITY_FUNCTIONS variable in the project ensures we ported away from old API calls. Task-number: QTBUG-86815 Change-Id: I034cce0921b65bf635c1d16a408bbd7141efe4a0 Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org> Reviewed-by: Alexandru Croitor <alexandru.croitor@qt.io>
Diffstat (limited to 'src')
-rw-r--r--src/coap/CMakeLists.txt5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/coap/CMakeLists.txt b/src/coap/CMakeLists.txt
index d04b05c..d67b5b2 100644
--- a/src/coap/CMakeLists.txt
+++ b/src/coap/CMakeLists.txt
@@ -4,7 +4,7 @@
## Coap Module:
#####################################################################
-qt_add_module(Coap
+qt_internal_add_module(Coap
SOURCES
qcoapclient.cpp qcoapclient.h qcoapclient_p.h
qcoapconnection.cpp qcoapconnection_p.h
@@ -31,7 +31,6 @@ qt_add_module(Coap
Qt::CorePrivate
Qt::Network
)
-qt_add_docs(Coap
+qt_internal_add_docs(Coap
doc/qtcoap.qdocconf
)
-