aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@qt.io>2021-02-15 13:12:59 +0100
committerFriedemann Kleint <Friedemann.Kleint@qt.io>2021-02-15 14:38:04 +0100
commit0d43f0eae4071ceffa07ec6c89349fa7942699a8 (patch)
treed9bcc69e57e3321906c2e788b60d7d95024a3874
parent2e23681d8955b077e34ff064c242b53a0e5b9ea8 (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. Pick-to: 6.0 Task-number: PYSIDE-1482 Change-Id: If087b272b3bfd70e726c4f0b86ea679ad7241d76 Reviewed-by: Cristian Maureira-Fredes <cristian.maureira-fredes@qt.io>
-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)