2009-05-16 18:04:21 +00:00
|
|
|
TEMPLATE = app
|
|
|
|
TARGET = goldendict
|
2022-09-23 11:59:03 +00:00
|
|
|
VERSION = 22.9.24-alpha
|
2009-05-16 18:04:21 +00:00
|
|
|
|
2010-07-02 17:07:05 +00:00
|
|
|
# Generate version file. We do this here and in a build rule described later.
|
|
|
|
# The build rule is required since qmake isn't run each time the project is
|
|
|
|
# rebuilt; and doing it here is required too since any other way the RCC
|
|
|
|
# compiler would complain if version.txt wouldn't exist (fresh checkouts).
|
|
|
|
|
2022-02-07 14:18:51 +00:00
|
|
|
system(git describe --tags --always --dirty): hasGit=1
|
2010-07-02 17:07:05 +00:00
|
|
|
|
2022-02-07 14:18:51 +00:00
|
|
|
!isEmpty(hasGit){
|
2022-03-15 11:55:23 +00:00
|
|
|
GIT_HASH=$$system(git rev-parse --short=8 HEAD )
|
2010-07-02 17:07:05 +00:00
|
|
|
}
|
2022-05-31 12:11:04 +00:00
|
|
|
|
2022-10-05 15:57:53 +00:00
|
|
|
system(echo $${VERSION}.$${GIT_HASH} on $${_DATE_} > version.txt)
|
2010-07-02 17:07:05 +00:00
|
|
|
|
2022-05-27 08:52:16 +00:00
|
|
|
!CONFIG( verbose_build_output ) {
|
|
|
|
!win32|*-msvc* {
|
|
|
|
# Reduce build log verbosity except for MinGW builds (mingw-make cannot
|
|
|
|
# execute "@echo ..." commands inserted by qmake).
|
|
|
|
CONFIG += silent
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-06-01 15:39:24 +00:00
|
|
|
CONFIG( release, debug|release ) {
|
|
|
|
DEFINES += NDEBUG
|
|
|
|
}
|
2022-06-01 15:23:41 +00:00
|
|
|
|
2009-05-16 18:04:21 +00:00
|
|
|
# DEPENDPATH += . generators
|
|
|
|
INCLUDEPATH += .
|
2013-05-30 13:24:21 +00:00
|
|
|
|
|
|
|
QT += core \
|
|
|
|
gui \
|
|
|
|
xml \
|
|
|
|
network \
|
2022-02-27 05:17:37 +00:00
|
|
|
svg \
|
|
|
|
widgets \
|
2021-12-19 10:37:27 +00:00
|
|
|
webenginewidgets\
|
|
|
|
webchannel\
|
|
|
|
printsupport \
|
2022-06-04 15:22:14 +00:00
|
|
|
help \
|
|
|
|
concurrent
|
2021-12-19 10:37:27 +00:00
|
|
|
|
2022-02-27 14:42:40 +00:00
|
|
|
greaterThan(QT_MAJOR_VERSION, 5): QT += webenginecore core5compat
|
2022-02-27 05:17:37 +00:00
|
|
|
|
2022-01-08 13:16:22 +00:00
|
|
|
DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x050F00
|
2021-12-26 11:01:05 +00:00
|
|
|
|
2021-12-19 10:37:27 +00:00
|
|
|
# QMediaPlayer is not available in Qt4.
|
|
|
|
!CONFIG( no_qtmultimedia_player ) {
|
|
|
|
QT += multimedia
|
|
|
|
DEFINES += MAKE_QTMULTIMEDIA_PLAYER
|
2013-05-30 13:24:21 +00:00
|
|
|
}
|
|
|
|
|
2018-03-29 17:00:53 +00:00
|
|
|
!CONFIG( no_ffmpeg_player ) {
|
|
|
|
DEFINES += MAKE_FFMPEG_PLAYER
|
|
|
|
}
|
|
|
|
|
2022-10-05 09:50:44 +00:00
|
|
|
# on windows platform ,only works in release build
|
2022-10-01 13:57:55 +00:00
|
|
|
CONFIG( use_xapian ) {
|
|
|
|
DEFINES += USE_XAPIAN
|
|
|
|
LIBS+= -lxapian
|
|
|
|
}
|
|
|
|
|
2009-05-16 18:04:21 +00:00
|
|
|
CONFIG += exceptions \
|
|
|
|
rtti \
|
2022-03-12 16:55:35 +00:00
|
|
|
stl \
|
2022-05-22 08:25:03 +00:00
|
|
|
c++17 \
|
2022-03-27 13:03:57 +00:00
|
|
|
lrelease \
|
2022-07-09 03:20:15 +00:00
|
|
|
utf8_source \
|
|
|
|
force_debug_info
|
2022-03-24 13:46:01 +00:00
|
|
|
|
|
|
|
mac {
|
2022-09-21 15:40:06 +00:00
|
|
|
CONFIG += app_bundle
|
2022-03-24 13:46:01 +00:00
|
|
|
}
|
2022-09-21 15:40:06 +00:00
|
|
|
|
|
|
|
QM_FILES_INSTALL_PATH = /locale/
|
2009-05-16 18:04:21 +00:00
|
|
|
OBJECTS_DIR = build
|
|
|
|
UI_DIR = build
|
|
|
|
MOC_DIR = build
|
2022-09-21 15:40:06 +00:00
|
|
|
RCC_DIR = build
|
2022-07-09 03:20:15 +00:00
|
|
|
LIBS += -lz \
|
2013-04-23 12:07:05 +00:00
|
|
|
-lbz2 \
|
|
|
|
-llzo2
|
2010-01-17 13:04:55 +00:00
|
|
|
|
2013-04-24 14:52:04 +00:00
|
|
|
win32 {
|
2013-08-07 18:15:49 +00:00
|
|
|
TARGET = GoldenDict
|
|
|
|
|
|
|
|
win32-msvc* {
|
2022-08-22 12:38:14 +00:00
|
|
|
# VS does not recognize 22.number.alpha,cause errors during compilation under MSVC++
|
2022-09-23 11:59:03 +00:00
|
|
|
VERSION = 22.9.24
|
2013-08-10 18:43:00 +00:00
|
|
|
DEFINES += __WIN32 _CRT_SECURE_NO_WARNINGS
|
2013-08-11 07:30:43 +00:00
|
|
|
contains(QMAKE_TARGET.arch, x86_64) {
|
|
|
|
DEFINES += NOMINMAX __WIN64
|
|
|
|
}
|
2016-04-07 21:45:27 +00:00
|
|
|
LIBS += -L$${PWD}/winlibs/lib/msvc
|
2022-05-29 02:17:27 +00:00
|
|
|
# silence the warning C4290: C++ exception specification ignored
|
|
|
|
QMAKE_CXXFLAGS += /wd4290 /Zc:__cplusplus /std:c++17 /permissive-
|
2022-04-23 11:41:45 +00:00
|
|
|
# QMAKE_LFLAGS_RELEASE += /OPT:REF /OPT:ICF
|
2022-05-29 23:57:00 +00:00
|
|
|
|
2013-08-11 07:30:43 +00:00
|
|
|
# QMAKE_CXXFLAGS_RELEASE += /GL # slows down the linking significantly
|
2016-04-07 21:45:27 +00:00
|
|
|
LIBS += -lshell32 -luser32 -lsapi -lole32
|
|
|
|
Debug: LIBS+= -lhunspelld
|
|
|
|
Release: LIBS+= -lhunspell
|
2013-08-11 07:30:43 +00:00
|
|
|
HUNSPELL_LIB = hunspell
|
2013-08-07 18:15:49 +00:00
|
|
|
}
|
|
|
|
|
2022-02-26 00:56:46 +00:00
|
|
|
LIBS += -lwsock32 \
|
2011-07-09 19:26:30 +00:00
|
|
|
-lpsapi \
|
|
|
|
-lole32 \
|
|
|
|
-loleaut32 \
|
2013-06-04 16:33:44 +00:00
|
|
|
-ladvapi32 \
|
|
|
|
-lcomdlg32
|
2010-01-22 22:50:28 +00:00
|
|
|
LIBS += -lvorbisfile \
|
|
|
|
-lvorbis \
|
2013-06-18 03:22:07 +00:00
|
|
|
-logg
|
2018-03-29 17:00:53 +00:00
|
|
|
!CONFIG( no_ffmpeg_player ) {
|
2013-06-18 01:11:21 +00:00
|
|
|
LIBS += -lao \
|
2022-02-02 06:32:03 +00:00
|
|
|
-lswresample \
|
|
|
|
-lavutil \
|
|
|
|
-lavformat \
|
|
|
|
-lavcodec
|
2013-06-18 01:11:21 +00:00
|
|
|
}
|
2013-05-30 13:24:21 +00:00
|
|
|
|
2022-02-19 12:56:32 +00:00
|
|
|
RC_ICONS += icons/programicon.ico icons/programicon_old.ico
|
2009-05-16 18:04:21 +00:00
|
|
|
INCLUDEPATH += winlibs/include
|
2011-06-03 11:24:13 +00:00
|
|
|
|
|
|
|
# Enable console in Debug mode on Windows, with useful logging messages
|
|
|
|
Debug:CONFIG += console
|
2011-06-19 18:50:11 +00:00
|
|
|
|
|
|
|
Release:DEFINES += NO_CONSOLE
|
2013-02-02 21:06:07 +00:00
|
|
|
|
2013-03-28 13:45:47 +00:00
|
|
|
gcc48:QMAKE_CXXFLAGS += -Wno-unused-local-typedefs
|
2013-09-14 16:17:32 +00:00
|
|
|
|
2015-10-26 18:21:14 +00:00
|
|
|
!CONFIG( no_chinese_conversion_support ) {
|
|
|
|
CONFIG += chinese_conversion_support
|
|
|
|
}
|
2009-05-16 18:04:21 +00:00
|
|
|
}
|
2022-09-09 06:46:48 +00:00
|
|
|
!CONFIG( no_macos_universal ) {
|
|
|
|
DEFINES += INCLUDE_LIBRARY_PATH
|
|
|
|
}
|
2011-09-17 10:28:50 +00:00
|
|
|
unix:!mac {
|
2022-03-13 03:58:45 +00:00
|
|
|
DEFINES += HAVE_X11
|
2010-05-29 11:27:10 +00:00
|
|
|
|
2022-03-13 03:58:45 +00:00
|
|
|
lessThan(QT_MAJOR_VERSION, 6): QT += x11extras
|
2015-06-24 14:56:29 +00:00
|
|
|
|
2010-01-22 22:50:28 +00:00
|
|
|
CONFIG += link_pkgconfig
|
2022-03-13 03:58:45 +00:00
|
|
|
|
2010-01-22 22:50:28 +00:00
|
|
|
PKGCONFIG += vorbisfile \
|
2015-10-11 14:58:31 +00:00
|
|
|
vorbis \
|
2013-05-05 10:22:12 +00:00
|
|
|
ogg \
|
2013-06-18 01:11:21 +00:00
|
|
|
hunspell
|
2018-03-29 17:00:53 +00:00
|
|
|
!CONFIG( no_ffmpeg_player ) {
|
2013-06-18 01:11:21 +00:00
|
|
|
PKGCONFIG += ao \
|
|
|
|
libavutil \
|
|
|
|
libavformat \
|
2020-07-18 12:42:29 +00:00
|
|
|
libavcodec \
|
|
|
|
libswresample \
|
2013-06-18 01:11:21 +00:00
|
|
|
}
|
2022-05-29 02:05:44 +00:00
|
|
|
!arm {
|
2012-12-04 08:21:13 +00:00
|
|
|
LIBS += -lX11 -lXtst
|
|
|
|
}
|
2013-07-21 10:29:28 +00:00
|
|
|
|
|
|
|
# Install prefix: first try to use qmake's PREFIX variable,
|
|
|
|
# then $PREFIX from system environment, and if both fails,
|
|
|
|
# use the hardcoded /usr/local.
|
|
|
|
PREFIX = $${PREFIX}
|
|
|
|
isEmpty( PREFIX ):PREFIX = $$(PREFIX)
|
2009-05-16 18:04:21 +00:00
|
|
|
isEmpty( PREFIX ):PREFIX = /usr/local
|
2013-07-21 10:29:28 +00:00
|
|
|
message(Install Prefix is: $$PREFIX)
|
|
|
|
|
2013-07-21 09:55:20 +00:00
|
|
|
DEFINES += PROGRAM_DATA_DIR=\\\"$$PREFIX/share/goldendict/\\\"
|
2009-05-16 18:04:21 +00:00
|
|
|
target.path = $$PREFIX/bin/
|
2013-07-21 09:55:20 +00:00
|
|
|
locale.path = $$PREFIX/share/goldendict/locale/
|
2009-05-16 18:04:21 +00:00
|
|
|
locale.files = locale/*.qm
|
|
|
|
INSTALLS += target \
|
|
|
|
locale
|
2009-11-10 18:52:50 +00:00
|
|
|
icons.path = $$PREFIX/share/pixmaps
|
2009-05-16 18:04:21 +00:00
|
|
|
icons.files = redist/icons/*.*
|
|
|
|
INSTALLS += icons
|
2009-11-10 18:52:50 +00:00
|
|
|
desktops.path = $$PREFIX/share/applications
|
2009-05-16 18:04:21 +00:00
|
|
|
desktops.files = redist/*.desktop
|
|
|
|
INSTALLS += desktops
|
2021-02-25 10:31:18 +00:00
|
|
|
metainfo.path = $$PREFIX/share/metainfo
|
|
|
|
metainfo.files = redist/*.metainfo.xml
|
|
|
|
INSTALLS += metainfo
|
2014-06-23 15:11:15 +00:00
|
|
|
helps.path = $$PREFIX/share/goldendict/help/
|
|
|
|
helps.files = help/*.qch
|
|
|
|
INSTALLS += helps
|
2009-05-16 18:04:21 +00:00
|
|
|
}
|
2019-04-01 21:48:46 +00:00
|
|
|
freebsd {
|
2022-02-26 00:56:46 +00:00
|
|
|
LIBS += -lexecinfo
|
2019-04-01 21:48:46 +00:00
|
|
|
}
|
2011-08-06 18:39:16 +00:00
|
|
|
mac {
|
2012-04-06 20:00:20 +00:00
|
|
|
TARGET = GoldenDict
|
2011-09-24 00:12:34 +00:00
|
|
|
# Uncomment this line to make a universal binary.
|
|
|
|
# You will need to use Xcode 3 and Qt Carbon SDK
|
|
|
|
# if you want the support for PowerPC and/or Mac OS X 10.4
|
|
|
|
# CONFIG += x86 x86_64 ppc
|
2011-08-14 20:04:27 +00:00
|
|
|
LIBS = -lz \
|
2012-03-26 00:53:12 +00:00
|
|
|
-lbz2 \
|
2011-08-07 08:13:20 +00:00
|
|
|
-lvorbisfile \
|
|
|
|
-lvorbis \
|
|
|
|
-logg \
|
2013-06-18 01:11:21 +00:00
|
|
|
-llzo2
|
2022-08-06 16:33:10 +00:00
|
|
|
|
2018-03-29 17:00:53 +00:00
|
|
|
!CONFIG( no_ffmpeg_player ) {
|
2013-06-18 01:11:21 +00:00
|
|
|
LIBS += -lao \
|
2022-03-24 13:46:01 +00:00
|
|
|
-lswresample \
|
|
|
|
-lavutil \
|
|
|
|
-lavformat \
|
|
|
|
-lavcodec
|
2013-06-18 01:11:21 +00:00
|
|
|
}
|
2022-09-08 13:46:17 +00:00
|
|
|
QT_CONFIG -= no-pkg-config
|
2022-03-12 12:16:01 +00:00
|
|
|
CONFIG += link_pkgconfig
|
2022-08-06 16:33:10 +00:00
|
|
|
|
2022-09-08 13:46:17 +00:00
|
|
|
|
2022-09-30 23:27:11 +00:00
|
|
|
!CONFIG( no_macos_universal ) {
|
|
|
|
LIBS+= -lhunspell
|
|
|
|
INCLUDEPATH = $${PWD}/maclibs/include
|
|
|
|
LIBS += -L$${PWD}/maclibs/lib -framework AppKit -framework Carbon
|
|
|
|
}
|
|
|
|
else{
|
|
|
|
PKGCONFIG += hunspell
|
|
|
|
INCLUDEPATH = /opt/homebrew/include /usr/local/include
|
|
|
|
LIBS += -L/opt/homebrew/lib -L/usr/local/lib -framework AppKit -framework Carbon
|
|
|
|
}
|
2022-08-06 16:33:10 +00:00
|
|
|
|
2013-04-05 12:25:34 +00:00
|
|
|
OBJECTIVE_SOURCES += lionsupport.mm \
|
2013-04-10 13:31:44 +00:00
|
|
|
machotkeywrapper.mm \
|
2013-05-07 13:39:35 +00:00
|
|
|
macmouseover.mm \
|
|
|
|
speechclient_mac.mm
|
2011-08-07 08:13:20 +00:00
|
|
|
ICON = icons/macicon.icns
|
2013-08-26 00:44:04 +00:00
|
|
|
QMAKE_INFO_PLIST = myInfo.plist
|
2022-08-06 16:33:10 +00:00
|
|
|
|
2022-09-30 23:27:11 +00:00
|
|
|
!CONFIG( no_macos_universal ) {
|
|
|
|
QMAKE_POST_LINK = mkdir -p GoldenDict.app/Contents/Frameworks && \
|
|
|
|
cp -nR $${PWD}/maclibs/lib/ GoldenDict.app/Contents/Frameworks/ && \
|
|
|
|
mkdir -p GoldenDict.app/Contents/MacOS/locale && \
|
|
|
|
cp -R locale/*.qm GoldenDict.app/Contents/MacOS/locale/ && \
|
|
|
|
mkdir -p GoldenDict.app/Contents/MacOS/help && \
|
|
|
|
cp -R $${PWD}/help/*.qch GoldenDict.app/Contents/MacOS/help/
|
|
|
|
}
|
|
|
|
else{
|
|
|
|
QMAKE_POST_LINK = mkdir -p GoldenDict.app/Contents/Frameworks && \
|
|
|
|
cp -nR $${PWD}/maclibs/lib/libeb.dylib GoldenDict.app/Contents/Frameworks/ && \
|
|
|
|
mkdir -p GoldenDict.app/Contents/MacOS/locale && \
|
|
|
|
cp -R locale/*.qm GoldenDict.app/Contents/MacOS/locale/ && \
|
|
|
|
mkdir -p GoldenDict.app/Contents/MacOS/help && \
|
|
|
|
cp -R $${PWD}/help/*.qch GoldenDict.app/Contents/MacOS/help/
|
|
|
|
}
|
|
|
|
|
2016-04-21 14:50:56 +00:00
|
|
|
!CONFIG( no_chinese_conversion_support ) {
|
|
|
|
CONFIG += chinese_conversion_support
|
2022-03-24 13:46:01 +00:00
|
|
|
QMAKE_POST_LINK += && mkdir -p GoldenDict.app/Contents/MacOS/opencc && \
|
2022-02-26 05:21:27 +00:00
|
|
|
cp -R $${PWD}/opencc/*.* GoldenDict.app/Contents/MacOS/opencc/
|
2016-04-21 14:50:56 +00:00
|
|
|
}
|
2022-09-30 23:27:11 +00:00
|
|
|
|
2011-08-06 18:39:16 +00:00
|
|
|
}
|
2009-05-16 18:04:21 +00:00
|
|
|
DEFINES += PROGRAM_VERSION=\\\"$$VERSION\\\"
|
|
|
|
|
|
|
|
# Input
|
|
|
|
HEADERS += folding.hh \
|
2022-05-21 06:03:26 +00:00
|
|
|
ankiconnector.h \
|
2022-03-04 15:25:11 +00:00
|
|
|
article_inspect.h \
|
2022-05-18 14:31:47 +00:00
|
|
|
articlewebpage.h \
|
2022-06-04 15:22:14 +00:00
|
|
|
base/globalregex.hh \
|
2022-01-08 06:51:24 +00:00
|
|
|
globalbroadcaster.h \
|
2022-10-02 11:53:54 +00:00
|
|
|
headwordsmodel.h \
|
2022-05-13 16:00:23 +00:00
|
|
|
iframeschemehandler.h \
|
2009-05-16 18:04:21 +00:00
|
|
|
inc_case_folding.hh \
|
|
|
|
inc_diacritic_folding.hh \
|
|
|
|
mainwindow.hh \
|
2022-01-09 01:52:40 +00:00
|
|
|
resourceschemehandler.h \
|
2009-05-16 18:04:21 +00:00
|
|
|
sptr.hh \
|
|
|
|
dictionary.hh \
|
|
|
|
ex.hh \
|
|
|
|
config.hh \
|
|
|
|
sources.hh \
|
|
|
|
utf8.hh \
|
|
|
|
file.hh \
|
|
|
|
bgl_babylon.hh \
|
|
|
|
bgl.hh \
|
|
|
|
initializing.hh \
|
|
|
|
article_netmgr.hh \
|
|
|
|
dictzip.h \
|
|
|
|
btreeidx.hh \
|
|
|
|
stardict.hh \
|
|
|
|
chunkedstorage.hh \
|
2021-12-11 16:34:37 +00:00
|
|
|
weburlrequestinterceptor.h \
|
2009-05-16 18:04:21 +00:00
|
|
|
xdxf2html.hh \
|
|
|
|
iconv.hh \
|
|
|
|
lsa.hh \
|
|
|
|
htmlescape.hh \
|
|
|
|
dsl.hh \
|
|
|
|
dsl_details.hh \
|
|
|
|
filetype.hh \
|
|
|
|
fsencoding.hh \
|
|
|
|
groups.hh \
|
|
|
|
groups_widgets.hh \
|
|
|
|
instances.hh \
|
|
|
|
article_maker.hh \
|
|
|
|
scanpopup.hh \
|
|
|
|
articleview.hh \
|
2018-03-21 17:49:34 +00:00
|
|
|
audioplayerinterface.hh \
|
|
|
|
audioplayerfactory.hh \
|
|
|
|
ffmpegaudioplayer.hh \
|
2018-03-29 17:00:53 +00:00
|
|
|
multimediaaudioplayer.hh \
|
2018-03-22 17:07:10 +00:00
|
|
|
externalaudioplayer.hh \
|
2009-05-16 18:04:21 +00:00
|
|
|
externalviewer.hh \
|
|
|
|
wordfinder.hh \
|
|
|
|
groupcombobox.hh \
|
|
|
|
keyboardstate.hh \
|
|
|
|
preferences.hh \
|
|
|
|
mutex.hh \
|
|
|
|
mediawiki.hh \
|
|
|
|
sounddir.hh \
|
|
|
|
hunspell.hh \
|
|
|
|
dictdfiles.hh \
|
|
|
|
audiolink.hh \
|
|
|
|
wstring.hh \
|
|
|
|
wstring_qt.hh \
|
|
|
|
processwrapper.hh \
|
|
|
|
hotkeywrapper.hh \
|
|
|
|
searchpanewidget.hh \
|
|
|
|
hotkeyedit.hh \
|
|
|
|
langcoder.hh \
|
|
|
|
editdictionaries.hh \
|
|
|
|
loaddictionaries.hh \
|
|
|
|
transliteration.hh \
|
|
|
|
romaji.hh \
|
2013-01-18 19:21:56 +00:00
|
|
|
belarusiantranslit.hh \
|
2009-05-16 18:04:21 +00:00
|
|
|
russiantranslit.hh \
|
|
|
|
german.hh \
|
2009-05-18 18:01:50 +00:00
|
|
|
website.hh \
|
2009-05-24 16:38:08 +00:00
|
|
|
orderandprops.hh \
|
2009-09-21 17:50:03 +00:00
|
|
|
language.hh \
|
2009-09-29 13:01:05 +00:00
|
|
|
dictionarybar.hh \
|
2009-10-21 19:37:07 +00:00
|
|
|
history.hh \
|
2009-10-22 11:38:11 +00:00
|
|
|
atomic_rename.hh \
|
2009-10-25 22:49:24 +00:00
|
|
|
articlewebview.hh \
|
|
|
|
zipfile.hh \
|
2010-01-17 13:04:55 +00:00
|
|
|
indexedzip.hh \
|
2010-05-29 09:22:08 +00:00
|
|
|
termination.hh \
|
2010-05-29 11:33:04 +00:00
|
|
|
greektranslit.hh \
|
2010-06-12 20:16:35 +00:00
|
|
|
webmultimediadownload.hh \
|
|
|
|
forvo.hh \
|
2010-11-14 16:28:50 +00:00
|
|
|
country.hh \
|
2011-05-29 05:08:37 +00:00
|
|
|
about.hh \
|
2011-05-30 01:05:28 +00:00
|
|
|
programs.hh \
|
2011-06-05 11:49:50 +00:00
|
|
|
parsecmdline.hh \
|
2011-06-19 18:50:11 +00:00
|
|
|
dictspanewidget.hh \
|
2011-06-23 14:17:09 +00:00
|
|
|
maintabwidget.hh \
|
2011-07-12 09:25:03 +00:00
|
|
|
mainstatusbar.hh \
|
2011-09-09 12:05:28 +00:00
|
|
|
gdappstyle.hh \
|
2012-01-24 12:55:28 +00:00
|
|
|
ufile.hh \
|
2012-02-09 12:49:41 +00:00
|
|
|
xdxf.hh \
|
2012-02-09 12:50:38 +00:00
|
|
|
sdict.hh \
|
|
|
|
decompress.hh \
|
2012-04-02 18:41:58 +00:00
|
|
|
aard.hh \
|
2012-09-24 12:51:51 +00:00
|
|
|
mruqmenu.hh \
|
2012-09-28 12:39:52 +00:00
|
|
|
dictinfo.hh \
|
2012-12-10 14:14:13 +00:00
|
|
|
zipsounds.hh \
|
2012-12-24 11:30:03 +00:00
|
|
|
stylescombobox.hh \
|
|
|
|
extlineedit.hh \
|
2013-01-17 09:08:53 +00:00
|
|
|
translatebox.hh \
|
2013-01-25 15:42:44 +00:00
|
|
|
historypanewidget.hh \
|
2013-04-23 12:07:05 +00:00
|
|
|
wordlist.hh \
|
|
|
|
mdictparser.hh \
|
2013-04-24 14:52:04 +00:00
|
|
|
mdx.hh \
|
2013-05-05 10:22:12 +00:00
|
|
|
voiceengines.hh \
|
2013-05-30 02:18:28 +00:00
|
|
|
ffmpegaudio.hh \
|
2013-08-02 09:00:16 +00:00
|
|
|
delegate.hh \
|
2013-09-27 13:03:27 +00:00
|
|
|
zim.hh \
|
2013-12-18 15:09:48 +00:00
|
|
|
gddebug.hh \
|
2021-11-27 07:17:33 +00:00
|
|
|
utils.hh \
|
2014-02-11 14:02:00 +00:00
|
|
|
gestures.hh \
|
2014-02-28 12:36:28 +00:00
|
|
|
tiff.hh \
|
2014-04-16 16:18:28 +00:00
|
|
|
dictheadwords.hh \
|
|
|
|
fulltextsearch.hh \
|
2014-04-30 12:55:53 +00:00
|
|
|
ftshelpers.hh \
|
2014-06-23 15:11:15 +00:00
|
|
|
dictserver.hh \
|
2015-01-22 15:17:05 +00:00
|
|
|
helpwindow.hh \
|
2015-10-11 14:58:31 +00:00
|
|
|
slob.hh \
|
2017-03-06 15:07:39 +00:00
|
|
|
ripemd.hh \
|
2017-04-24 14:42:01 +00:00
|
|
|
gls.hh \
|
2017-05-05 14:39:51 +00:00
|
|
|
splitfile.hh \
|
2018-05-21 15:32:04 +00:00
|
|
|
favoritespanewidget.hh \
|
2018-09-24 17:22:51 +00:00
|
|
|
treeview.hh
|
2013-01-17 09:08:53 +00:00
|
|
|
|
2009-05-16 18:04:21 +00:00
|
|
|
FORMS += groups.ui \
|
|
|
|
dictgroupwidget.ui \
|
|
|
|
mainwindow.ui \
|
|
|
|
sources.ui \
|
|
|
|
initializing.ui \
|
|
|
|
scanpopup.ui \
|
|
|
|
articleview.ui \
|
|
|
|
preferences.ui \
|
|
|
|
about.ui \
|
2009-05-18 18:01:50 +00:00
|
|
|
editdictionaries.ui \
|
2012-09-24 12:51:51 +00:00
|
|
|
orderandprops.ui \
|
2014-02-28 12:36:28 +00:00
|
|
|
dictinfo.ui \
|
2014-04-03 14:21:02 +00:00
|
|
|
dictheadwords.ui \
|
2014-04-16 16:18:28 +00:00
|
|
|
authentication.ui \
|
|
|
|
fulltextsearch.ui
|
2015-01-22 15:17:05 +00:00
|
|
|
|
2009-05-16 18:04:21 +00:00
|
|
|
SOURCES += folding.cc \
|
2022-05-21 06:03:26 +00:00
|
|
|
ankiconnector.cpp \
|
2022-03-04 15:25:11 +00:00
|
|
|
article_inspect.cpp \
|
2022-05-18 14:31:47 +00:00
|
|
|
articlewebpage.cpp \
|
2022-06-04 15:22:14 +00:00
|
|
|
base/globalregex.cc \
|
2022-01-08 06:51:24 +00:00
|
|
|
globalbroadcaster.cpp \
|
2022-10-02 11:53:54 +00:00
|
|
|
headwordsmodel.cpp \
|
2022-05-13 16:00:23 +00:00
|
|
|
iframeschemehandler.cpp \
|
2009-05-16 18:04:21 +00:00
|
|
|
main.cc \
|
|
|
|
dictionary.cc \
|
|
|
|
config.cc \
|
2022-01-09 01:52:40 +00:00
|
|
|
resourceschemehandler.cpp \
|
2009-05-16 18:04:21 +00:00
|
|
|
sources.cc \
|
|
|
|
mainwindow.cc \
|
|
|
|
utf8.cc \
|
|
|
|
file.cc \
|
|
|
|
bgl_babylon.cc \
|
|
|
|
bgl.cc \
|
|
|
|
initializing.cc \
|
|
|
|
article_netmgr.cc \
|
|
|
|
dictzip.c \
|
|
|
|
btreeidx.cc \
|
|
|
|
stardict.cc \
|
|
|
|
chunkedstorage.cc \
|
2022-10-07 09:08:10 +00:00
|
|
|
utils.cc \
|
2021-12-11 16:34:37 +00:00
|
|
|
weburlrequestinterceptor.cpp \
|
2009-05-16 18:04:21 +00:00
|
|
|
xdxf2html.cc \
|
|
|
|
iconv.cc \
|
|
|
|
lsa.cc \
|
|
|
|
htmlescape.cc \
|
|
|
|
dsl.cc \
|
|
|
|
dsl_details.cc \
|
|
|
|
filetype.cc \
|
|
|
|
fsencoding.cc \
|
|
|
|
groups.cc \
|
|
|
|
groups_widgets.cc \
|
|
|
|
instances.cc \
|
|
|
|
article_maker.cc \
|
|
|
|
scanpopup.cc \
|
|
|
|
articleview.cc \
|
2018-03-21 17:49:34 +00:00
|
|
|
audioplayerfactory.cc \
|
2018-03-29 17:00:53 +00:00
|
|
|
multimediaaudioplayer.cc \
|
2018-03-22 17:07:10 +00:00
|
|
|
externalaudioplayer.cc \
|
2009-05-16 18:04:21 +00:00
|
|
|
externalviewer.cc \
|
|
|
|
wordfinder.cc \
|
|
|
|
groupcombobox.cc \
|
|
|
|
keyboardstate.cc \
|
|
|
|
preferences.cc \
|
|
|
|
mutex.cc \
|
|
|
|
mediawiki.cc \
|
|
|
|
sounddir.cc \
|
|
|
|
hunspell.cc \
|
|
|
|
dictdfiles.cc \
|
|
|
|
audiolink.cc \
|
|
|
|
wstring_qt.cc \
|
|
|
|
processwrapper.cc \
|
|
|
|
hotkeywrapper.cc \
|
|
|
|
hotkeyedit.cc \
|
|
|
|
langcoder.cc \
|
|
|
|
editdictionaries.cc \
|
|
|
|
loaddictionaries.cc \
|
|
|
|
transliteration.cc \
|
|
|
|
romaji.cc \
|
2013-01-18 19:21:56 +00:00
|
|
|
belarusiantranslit.cc \
|
2009-05-16 18:04:21 +00:00
|
|
|
russiantranslit.cc \
|
|
|
|
german.cc \
|
2009-05-18 18:01:50 +00:00
|
|
|
website.cc \
|
2009-05-24 16:38:08 +00:00
|
|
|
orderandprops.cc \
|
2009-09-21 17:50:03 +00:00
|
|
|
language.cc \
|
2009-09-29 13:01:05 +00:00
|
|
|
dictionarybar.cc \
|
2009-10-21 19:37:07 +00:00
|
|
|
history.cc \
|
2009-10-22 11:38:11 +00:00
|
|
|
atomic_rename.cc \
|
2009-10-25 22:49:24 +00:00
|
|
|
articlewebview.cc \
|
|
|
|
zipfile.cc \
|
2010-01-17 13:04:55 +00:00
|
|
|
indexedzip.cc \
|
2010-05-29 09:22:08 +00:00
|
|
|
termination.cc \
|
2010-05-29 11:33:04 +00:00
|
|
|
greektranslit.cc \
|
2010-06-12 20:16:35 +00:00
|
|
|
webmultimediadownload.cc \
|
|
|
|
forvo.cc \
|
2010-11-14 16:28:50 +00:00
|
|
|
country.cc \
|
2011-05-29 05:08:37 +00:00
|
|
|
about.cc \
|
2011-05-30 01:05:28 +00:00
|
|
|
programs.cc \
|
2011-06-23 14:17:09 +00:00
|
|
|
parsecmdline.cc \
|
2011-06-27 18:54:15 +00:00
|
|
|
maintabwidget.cc \
|
2011-07-12 09:25:03 +00:00
|
|
|
mainstatusbar.cc \
|
2011-09-09 12:05:28 +00:00
|
|
|
gdappstyle.cc \
|
2012-01-24 12:55:28 +00:00
|
|
|
ufile.cc \
|
2012-02-09 12:49:41 +00:00
|
|
|
xdxf.cc \
|
2012-02-09 12:50:38 +00:00
|
|
|
sdict.cc \
|
|
|
|
decompress.cc \
|
2012-04-02 18:41:58 +00:00
|
|
|
aard.cc \
|
2012-09-24 12:51:51 +00:00
|
|
|
mruqmenu.cc \
|
2012-09-28 12:39:52 +00:00
|
|
|
dictinfo.cc \
|
2012-12-10 14:14:13 +00:00
|
|
|
zipsounds.cc \
|
2012-12-24 11:30:03 +00:00
|
|
|
stylescombobox.cc \
|
|
|
|
extlineedit.cc \
|
2013-01-17 09:08:53 +00:00
|
|
|
translatebox.cc \
|
2013-01-25 15:42:44 +00:00
|
|
|
historypanewidget.cc \
|
2013-04-23 12:07:05 +00:00
|
|
|
wordlist.cc \
|
|
|
|
mdictparser.cc \
|
2013-04-24 14:52:04 +00:00
|
|
|
mdx.cc \
|
2013-05-05 10:22:12 +00:00
|
|
|
voiceengines.cc \
|
2013-05-30 02:18:28 +00:00
|
|
|
ffmpegaudio.cc \
|
2013-09-14 16:17:32 +00:00
|
|
|
delegate.cc \
|
2013-11-16 18:34:09 +00:00
|
|
|
zim.cc \
|
2014-02-04 13:35:42 +00:00
|
|
|
gddebug.cc \
|
2014-02-11 14:02:00 +00:00
|
|
|
gestures.cc \
|
2014-02-28 12:36:28 +00:00
|
|
|
tiff.cc \
|
2014-04-16 16:18:28 +00:00
|
|
|
dictheadwords.cc \
|
|
|
|
fulltextsearch.cc \
|
2014-04-30 12:55:53 +00:00
|
|
|
ftshelpers.cc \
|
2014-06-23 15:11:15 +00:00
|
|
|
dictserver.cc \
|
2015-01-22 15:17:05 +00:00
|
|
|
helpwindow.cc \
|
2015-10-11 14:58:31 +00:00
|
|
|
slob.cc \
|
2017-03-06 15:07:39 +00:00
|
|
|
ripemd.cc \
|
2017-04-24 14:42:01 +00:00
|
|
|
gls.cc \
|
2017-05-05 14:39:51 +00:00
|
|
|
splitfile.cc \
|
2018-09-24 17:22:51 +00:00
|
|
|
favoritespanewidget.cc \
|
|
|
|
treeview.cc
|
2013-01-17 09:08:53 +00:00
|
|
|
|
2013-04-24 14:52:04 +00:00
|
|
|
win32 {
|
2015-10-11 14:58:31 +00:00
|
|
|
FORMS += texttospeechsource.ui
|
2022-05-26 12:26:47 +00:00
|
|
|
SOURCES += guids.c \
|
2013-04-24 14:52:04 +00:00
|
|
|
speechclient_win.cc \
|
|
|
|
texttospeechsource.cc \
|
|
|
|
speechhlp.cc
|
2022-05-26 12:26:47 +00:00
|
|
|
HEADERS += texttospeechsource.hh \
|
2013-04-24 14:52:04 +00:00
|
|
|
sapi.hh \
|
|
|
|
sphelper.hh \
|
2013-04-26 13:41:39 +00:00
|
|
|
speechclient.hh \
|
2022-03-12 03:47:59 +00:00
|
|
|
speechhlp.hh
|
2009-05-16 18:04:21 +00:00
|
|
|
}
|
2013-04-10 13:31:44 +00:00
|
|
|
|
|
|
|
mac {
|
2013-05-07 13:39:35 +00:00
|
|
|
HEADERS += macmouseover.hh \
|
|
|
|
texttospeechsource.hh \
|
|
|
|
speechclient.hh
|
|
|
|
FORMS += texttospeechsource.ui
|
|
|
|
SOURCES += texttospeechsource.cc
|
2013-04-10 13:31:44 +00:00
|
|
|
}
|
|
|
|
|
2017-06-05 13:15:38 +00:00
|
|
|
unix:!mac {
|
|
|
|
HEADERS += scanflag.hh
|
|
|
|
FORMS += scanflag.ui
|
|
|
|
SOURCES += scanflag.cc
|
|
|
|
}
|
|
|
|
|
2022-01-23 22:49:20 +00:00
|
|
|
|
2018-02-21 14:43:35 +00:00
|
|
|
HEADERS += wildcard.hh
|
|
|
|
SOURCES += wildcard.cc
|
2022-01-23 22:49:20 +00:00
|
|
|
|
2018-02-21 14:43:35 +00:00
|
|
|
|
2013-09-14 16:17:32 +00:00
|
|
|
CONFIG( zim_support ) {
|
|
|
|
DEFINES += MAKE_ZIM_SUPPORT
|
2020-05-27 11:04:49 +00:00
|
|
|
LIBS += -llzma -lzstd
|
2013-09-14 16:17:32 +00:00
|
|
|
}
|
|
|
|
|
2014-02-11 14:02:00 +00:00
|
|
|
!CONFIG( no_extra_tiff_handler ) {
|
|
|
|
DEFINES += MAKE_EXTRA_TIFF_HANDLER
|
|
|
|
LIBS += -ltiff
|
|
|
|
}
|
|
|
|
|
2014-05-20 13:59:56 +00:00
|
|
|
CONFIG( no_epwing_support ) {
|
|
|
|
DEFINES += NO_EPWING_SUPPORT
|
|
|
|
}
|
|
|
|
|
|
|
|
!CONFIG( no_epwing_support ) {
|
|
|
|
HEADERS += epwing.hh \
|
2014-05-22 16:53:06 +00:00
|
|
|
epwing_book.hh \
|
|
|
|
epwing_charmap.hh
|
2014-05-20 13:59:56 +00:00
|
|
|
SOURCES += epwing.cc \
|
2014-05-22 16:53:06 +00:00
|
|
|
epwing_book.cc \
|
|
|
|
epwing_charmap.cc
|
2014-05-20 13:59:56 +00:00
|
|
|
LIBS += -leb
|
|
|
|
}
|
|
|
|
|
2015-10-25 13:54:38 +00:00
|
|
|
CONFIG( chinese_conversion_support ) {
|
|
|
|
DEFINES += MAKE_CHINESE_CONVERSION_SUPPORT
|
|
|
|
FORMS += chineseconversion.ui
|
|
|
|
HEADERS += chinese.hh \
|
|
|
|
chineseconversion.hh
|
|
|
|
SOURCES += chinese.cc \
|
|
|
|
chineseconversion.cc
|
2022-03-25 05:04:49 +00:00
|
|
|
LIBS += -lopencc
|
2015-10-19 13:52:23 +00:00
|
|
|
}
|
|
|
|
|
2009-05-16 18:04:21 +00:00
|
|
|
RESOURCES += resources.qrc \
|
2022-09-04 01:55:39 +00:00
|
|
|
scripts.qrc \
|
2009-05-16 18:04:21 +00:00
|
|
|
flags.qrc
|
2022-03-27 13:03:57 +00:00
|
|
|
#EXTRA_TRANSLATIONS += thirdparty/qwebengine_ts/qtwebengine_zh_CN.ts
|
2009-09-21 17:50:03 +00:00
|
|
|
TRANSLATIONS += locale/ru_RU.ts \
|
|
|
|
locale/zh_CN.ts \
|
|
|
|
locale/cs_CZ.ts \
|
2009-09-21 19:57:55 +00:00
|
|
|
locale/de_DE.ts \
|
2022-08-25 16:22:27 +00:00
|
|
|
locale/de_CH.ts \
|
2009-10-21 19:37:07 +00:00
|
|
|
locale/el_GR.ts \
|
2010-02-13 21:00:27 +00:00
|
|
|
locale/bg_BG.ts \
|
|
|
|
locale/ar_SA.ts \
|
2010-06-21 21:11:37 +00:00
|
|
|
locale/lt_LT.ts \
|
2010-08-20 13:56:10 +00:00
|
|
|
locale/uk_UA.ts \
|
2010-11-11 17:22:48 +00:00
|
|
|
locale/vi_VN.ts \
|
2011-01-05 06:35:26 +00:00
|
|
|
locale/it_IT.ts \
|
2011-03-04 06:56:26 +00:00
|
|
|
locale/pl_PL.ts \
|
2011-03-04 07:14:48 +00:00
|
|
|
locale/ja_JP.ts \
|
2011-03-09 03:36:10 +00:00
|
|
|
locale/zh_TW.ts \
|
2011-03-20 19:36:11 +00:00
|
|
|
locale/sq_AL.ts \
|
2011-05-28 22:22:12 +00:00
|
|
|
locale/pt_BR.ts \
|
2011-10-16 00:06:14 +00:00
|
|
|
locale/es_AR.ts \
|
2012-02-22 05:44:58 +00:00
|
|
|
locale/es_BO.ts \
|
|
|
|
locale/es_ES.ts \
|
2011-11-13 08:48:47 +00:00
|
|
|
locale/sk_SK.ts \
|
2012-01-26 14:07:10 +00:00
|
|
|
locale/tr_TR.ts \
|
2012-05-20 23:18:51 +00:00
|
|
|
locale/qu_WI.ts \
|
2012-12-24 18:21:43 +00:00
|
|
|
locale/tg_TJ.ts \
|
2013-01-15 07:13:15 +00:00
|
|
|
locale/ay_WI.ts \
|
|
|
|
locale/be_BY.ts \
|
2013-01-29 22:40:55 +00:00
|
|
|
locale/be_BY@latin.ts \
|
2013-03-18 08:01:52 +00:00
|
|
|
locale/fr_FR.ts \
|
2013-04-08 21:10:39 +00:00
|
|
|
locale/ko_KR.ts \
|
2013-08-24 17:20:43 +00:00
|
|
|
locale/nl_NL.ts \
|
2013-09-16 13:07:20 +00:00
|
|
|
locale/sr_SR.ts \
|
2013-09-23 09:48:52 +00:00
|
|
|
locale/sv_SE.ts \
|
2014-03-18 18:54:53 +00:00
|
|
|
locale/tk_TM.ts \
|
2014-05-26 15:48:18 +00:00
|
|
|
locale/fa_IR.ts \
|
2016-11-24 01:46:50 +00:00
|
|
|
locale/mk_MK.ts \
|
2016-11-24 04:52:42 +00:00
|
|
|
locale/eo_EO.ts \
|
2020-02-23 19:00:32 +00:00
|
|
|
locale/fi_FI.ts \
|
2020-07-19 09:53:21 +00:00
|
|
|
locale/jb_JB.ts \
|
2021-03-09 14:53:48 +00:00
|
|
|
locale/hi_IN.ts \
|
2020-07-19 09:53:21 +00:00
|
|
|
locale/ie_001.ts
|
2010-07-02 17:07:05 +00:00
|
|
|
# Build version file
|
2010-07-03 11:01:01 +00:00
|
|
|
!isEmpty( hasGit ) {
|
2012-12-03 19:11:33 +00:00
|
|
|
PRE_TARGETDEPS += $$PWD/version.txt
|
2010-07-03 11:01:01 +00:00
|
|
|
}
|
2010-07-02 17:07:05 +00:00
|
|
|
|
2022-09-21 15:40:06 +00:00
|
|
|
# This makes qmake generate translations
|
|
|
|
|
|
|
|
|
|
|
|
isEmpty(QMAKE_LRELEASE):QMAKE_LRELEASE = $$[QT_INSTALL_BINS]/lrelease
|
|
|
|
|
|
|
|
|
|
|
|
# The *.qm files might not exist when qmake is run for the first time,
|
|
|
|
# causing the standard install rule to be ignored, and no translations
|
|
|
|
# will be installed. With this, we create the qm files during qmake run.
|
|
|
|
!win32 {
|
|
|
|
system($${QMAKE_LRELEASE} -silent $${_PRO_FILE_} 2> /dev/null)
|
|
|
|
}
|
|
|
|
else{
|
|
|
|
system($${QMAKE_LRELEASE} -silent $${_PRO_FILE_})
|
|
|
|
}
|
2013-07-21 08:45:21 +00:00
|
|
|
|
2022-09-21 15:40:06 +00:00
|
|
|
updateqm.input = TRANSLATIONS
|
|
|
|
updateqm.output = locale/${QMAKE_FILE_BASE}.qm
|
|
|
|
updateqm.commands = $$QMAKE_LRELEASE \
|
|
|
|
${QMAKE_FILE_IN} \
|
|
|
|
-qm \
|
|
|
|
${QMAKE_FILE_OUT}
|
|
|
|
updateqm.CONFIG += no_link
|
|
|
|
QMAKE_EXTRA_COMPILERS += updateqm
|
|
|
|
TS_OUT = $$TRANSLATIONS
|
|
|
|
TS_OUT ~= s/.ts/.qm/g
|
|
|
|
PRE_TARGETDEPS += $$TS_OUT
|
2010-11-20 13:43:55 +00:00
|
|
|
|
2022-02-18 12:50:15 +00:00
|
|
|
include( thirdparty/qtsingleapplication/src/qtsingleapplication.pri )
|
2011-09-09 12:05:28 +00:00
|
|
|
|