[LyX/master] Cmake build: Add Qt?Xml modules to build.
Richard Kimberly Heck
rikiheck at lyx.org
Sun Jun 23 16:37:40 UTC 2024
commit 01160486974a69e62e0b21490454e8dc2e0a4c8e
Author: Kornel Benko <kornel at lyx.org>
Date: Sun Jun 23 12:34:50 2024 -0400
Cmake build: Add Qt?Xml modules to build.
Cmake part of the fix to #13069 XHTML output for InsetMathBox can loop forever
---
src/frontends/qt/CMakeLists.txt | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/src/frontends/qt/CMakeLists.txt b/src/frontends/qt/CMakeLists.txt
index a007c2f492..65ed992c94 100644
--- a/src/frontends/qt/CMakeLists.txt
+++ b/src/frontends/qt/CMakeLists.txt
@@ -47,14 +47,14 @@ endif()
set_target_properties(frontend_qt PROPERTIES FOLDER "applications/LyX" QT_NO_UNICODE_DEFINES TRUE)
if(Qt6Core_FOUND)
- qt_use_modules(frontend_qt Core Gui Widgets Concurrent Svg SvgWidgets)
+ qt_use_modules(frontend_qt Core Gui Widgets Concurrent Svg Xml SvgWidgets)
elseif(Qt5Core_FOUND AND APPLE)
- qt_use_modules(frontend_qt Core Gui Widgets Concurrent Svg MacExtras)
+ qt_use_modules(frontend_qt Core Gui Widgets Concurrent Svg Xml MacExtras)
else()
if (Qt5WinExtras_FOUND)
- qt_use_modules(frontend_qt Core Gui Widgets Concurrent Svg WinExtras)
+ qt_use_modules(frontend_qt Core Gui Widgets Concurrent Svg Xml WinExtras)
else()
- qt_use_modules(frontend_qt Core Gui Widgets Concurrent Svg)
+ qt_use_modules(frontend_qt Core Gui Widgets Concurrent Svg Xml)
endif()
endif()
target_link_libraries(frontend_qt
More information about the lyx-cvs
mailing list