aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@qt.io>2021-02-15 13:12:59 +0100
committerQt Cherry-pick Bot <cherrypick_bot@qt-project.org>2021-02-15 15:48:24 +0000
commitdce707c3d60b22aaef32eb6b58e97699099377ad (patch)
treefe684e027f46e8413a435874206c86c7ae3f3cb6
parent021b7d8fe8ed58c742fec8527ad9abeb80c4e715 (diff)
Documentation: Add the modules contained in other qddocconf files
This will fix the currently dead links to OpenGLWidgets SvgWidgets in 6.0 and handle the modules new in Qt 6.1. Task-number: PYSIDE-1482 Change-Id: If087b272b3bfd70e726c4f0b86ea679ad7241d76 Reviewed-by: Cristian Maureira-Fredes <cristian.maureira-fredes@qt.io> (cherry picked from commit 0d43f0eae4071ceffa07ec6c89349fa7942699a8) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
-rw-r--r--sources/pyside6/doc/CMakeLists.txt6
1 files changed, 6 insertions, 0 deletions
diff --git a/sources/pyside6/doc/CMakeLists.txt b/sources/pyside6/doc/CMakeLists.txt
index b61bdf797..b89d5c5e4 100644
--- a/sources/pyside6/doc/CMakeLists.txt
+++ b/sources/pyside6/doc/CMakeLists.txt
@@ -62,10 +62,16 @@ if (FULLDOCSBUILD)
# Handle docconf files in Qt that contain multiple modules
if ("${moduleIn}" STREQUAL "3DExtras")
set(modules 3DCore 3DRender 3DInput 3DLogic 3DAnimation "${moduleIn}")
+ elseif ("${moduleIn}" STREQUAL "OpenGL")
+ set(modules "${moduleIn}" OpenGLWidgets)
elseif ("${moduleIn}" STREQUAL "QuickWidgets")
set(modules Qml Quick "${moduleIn}")
elseif ("${moduleIn}" STREQUAL "MultimediaWidgets")
set(modules Multimedia "${moduleIn}")
+ elseif ("${moduleIn}" STREQUAL "Scxml")
+ set(modules StateMachine "${moduleIn}")
+ elseif ("${moduleIn}" STREQUAL "Svg")
+ set(modules "${moduleIn}" SvgWidgets)
elseif ("${moduleIn}" STREQUAL "WebEngineWidgets")
set(modules WebEngine WebEngineCore "${moduleIn}")
set(HAS_WEBENGINE_WIDGETS 1)