Windows GUI: return to webkit

This commit is contained in:
Jean-Francois Dockes 2021-03-29 16:57:45 +01:00
parent c271ff7b88
commit e594c71848
2 changed files with 12 additions and 4 deletions

View File

@ -5,10 +5,10 @@ TEMPLATE = app
LANGUAGE = C++
TARGET = recoll
#DEFINES += USING_WEBKIT
#QT += webkit webkitwidgets
QT += widgets webenginewidgets
DEFINES += USING_WEBENGINE
DEFINES += USING_WEBKIT
QT += webkit webkitwidgets
#QT += widgets webenginewidgets
#DEFINES += USING_WEBENGINE
QT += xml printsupport

View File

@ -24,6 +24,8 @@ test -d $DESTDIR || mkdir $DESTDIR || fatal cant create $DESTDIR
BUILD=MSVC
#BUILD=MINGW
WEB=WEBKIT
#WEB=WEBENGINE
if test $BUILD = MSVC ; then
# Recoll src tree
@ -127,6 +129,12 @@ copyqt()
done
chkcp $QTBIN/libwinpthread-1.dll $DESTDIR
chkcp $QTBIN/libstdc++-6.dll $DESTDIR
elif test $WEB = WEBKIT ; then
addlibs="icudt65.dll icuin65.dll icuuc65.dll libxml2.dll libxslt.dll \
Qt5WebKit.dll Qt5WebKitWidgets.dll"
for i in $addlibs;do
chkcp $QTBIN/$i $DESTDIR
done
fi
}