mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-22 01:59:02 +00:00
Add Qt's Svg module to the list of used modules. This is required to allow the use of e.g. the QSvgRenderer class.
This commit is contained in:
parent
82e4dbc48e
commit
0933df0011
@ -44,7 +44,7 @@ AC_DEFUN([QT_CHECK_COMPILE],
|
||||
done
|
||||
qt_cv_libname=
|
||||
for libname in $qt_guilibs \
|
||||
'-framework QtCore -framework QtConcurrent -framework QtWidgets -framework QtMacExtras -framework QtGui'\
|
||||
'-framework QtCore -framework QtConcurrent -framework QtSvg -framework QtWidgets -framework QtMacExtras -framework QtGui'\
|
||||
'-framework QtCore -framework QtGui'
|
||||
do
|
||||
QT_TRY_LINK($libname)
|
||||
@ -269,7 +269,7 @@ AC_DEFUN([QT_DO_MANUAL_CONFIG],
|
||||
QT_CORE_LDFLAGS=
|
||||
if test -n "$qt_cv_includes"; then
|
||||
QT_INCLUDES="-I$qt_cv_includes"
|
||||
for i in Qt QtCore QtGui QtWidgets QtConcurrent QtMacExtras; do
|
||||
for i in Qt QtCore QtGui QtWidgets QtSvg QtConcurrent QtMacExtras; do
|
||||
QT_INCLUDES="$QT_INCLUDES -I$qt_cv_includes/$i"
|
||||
done
|
||||
QT_CORE_INCLUDES="-I$qt_cv_includes -I$qt_cv_includes/QtCore"
|
||||
|
@ -56,12 +56,12 @@ endif()
|
||||
set_target_properties(frontend_qt PROPERTIES FOLDER "applications/LyX")
|
||||
|
||||
if(Qt5Core_FOUND AND APPLE)
|
||||
qt_use_modules(frontend_qt Core Gui Widgets Concurrent MacExtras)
|
||||
qt_use_modules(frontend_qt Core Gui Widgets Concurrent Svg MacExtras)
|
||||
else()
|
||||
if (Qt5WinExtras_FOUND)
|
||||
qt_use_modules(frontend_qt Core Gui Widgets Concurrent WinExtras)
|
||||
qt_use_modules(frontend_qt Core Gui Widgets Concurrent Svg WinExtras)
|
||||
else()
|
||||
qt_use_modules(frontend_qt Core Gui Widgets Concurrent)
|
||||
qt_use_modules(frontend_qt Core Gui Widgets Concurrent Svg)
|
||||
endif()
|
||||
endif()
|
||||
target_link_libraries(frontend_qt
|
||||
|
Loading…
Reference in New Issue
Block a user