2013-11-23 13:48:34 +07:00
|
|
|
#-------------------------------------------------
|
|
|
|
#
|
|
|
|
# Project created by QtCreator 2013-11-22T12:00:23
|
|
|
|
#
|
|
|
|
#-------------------------------------------------
|
|
|
|
|
2013-11-24 19:43:37 +07:00
|
|
|
QT += core gui network webkitwidgets
|
2013-11-23 13:48:34 +07:00
|
|
|
|
|
|
|
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
|
|
|
|
|
|
|
|
TARGET = ScreenTranslator
|
|
|
|
TEMPLATE = app
|
2015-10-10 03:18:22 +07:00
|
|
|
CONFIG += c++11
|
2013-11-23 13:48:34 +07:00
|
|
|
|
2015-09-27 22:16:37 +07:00
|
|
|
win32{
|
|
|
|
RC_FILE = app.rc
|
|
|
|
INCLUDEPATH += ../mingw/include
|
|
|
|
LIBS += -L../mingw/lib -lws2_32
|
|
|
|
}
|
|
|
|
linux{
|
|
|
|
QT += x11extras
|
|
|
|
INCLUDEPATH += ../linux/include
|
2015-09-30 23:49:10 +07:00
|
|
|
LIBS += -L../linux/lib -lX11 -Wl,-rpath,.
|
2015-09-27 22:16:37 +07:00
|
|
|
}
|
2013-11-24 19:43:37 +07:00
|
|
|
|
2015-09-27 22:16:37 +07:00
|
|
|
LIBS += -ltesseract -llept
|
2013-11-23 13:48:34 +07:00
|
|
|
|
2015-09-24 00:51:20 +07:00
|
|
|
include(3rd-party/qtsingleapplication/qtsingleapplication.pri)
|
|
|
|
|
2013-11-23 13:48:34 +07:00
|
|
|
SOURCES += main.cpp\
|
|
|
|
Manager.cpp \
|
|
|
|
SettingsEditor.cpp \
|
|
|
|
SelectionDialog.cpp \
|
2013-11-23 14:00:22 +07:00
|
|
|
GlobalActionHelper.cpp \
|
|
|
|
Recognizer.cpp \
|
2013-11-26 23:59:47 +07:00
|
|
|
ResultDialog.cpp \
|
2014-03-30 21:36:32 +07:00
|
|
|
ProcessingItem.cpp \
|
2014-04-04 21:39:10 +07:00
|
|
|
ImageProcessing.cpp \
|
2015-04-11 16:01:10 +07:00
|
|
|
LanguageHelper.cpp \
|
2015-10-08 22:36:02 +07:00
|
|
|
WebTranslator.cpp \
|
2015-10-10 03:18:22 +07:00
|
|
|
WebTranslatorProxy.cpp \
|
2015-10-10 17:33:18 +07:00
|
|
|
TranslatorHelper.cpp \
|
2015-10-10 18:45:57 +07:00
|
|
|
RecognizerHelper.cpp \
|
|
|
|
Utils.cpp
|
2013-11-23 13:48:34 +07:00
|
|
|
|
|
|
|
HEADERS += \
|
|
|
|
Manager.h \
|
|
|
|
SettingsEditor.h \
|
|
|
|
SelectionDialog.h \
|
2013-11-23 14:00:22 +07:00
|
|
|
GlobalActionHelper.h \
|
|
|
|
Recognizer.h \
|
2013-11-26 13:44:00 +07:00
|
|
|
Settings.h \
|
|
|
|
ProcessingItem.h \
|
2014-03-30 21:36:32 +07:00
|
|
|
ResultDialog.h \
|
2014-04-04 21:39:10 +07:00
|
|
|
ImageProcessing.h \
|
2015-04-11 16:01:10 +07:00
|
|
|
LanguageHelper.h \
|
2015-10-08 22:36:02 +07:00
|
|
|
WebTranslator.h \
|
2015-10-08 22:38:16 +07:00
|
|
|
WebTranslatorProxy.h \
|
2015-10-10 03:18:22 +07:00
|
|
|
StAssert.h \
|
2015-10-10 17:33:18 +07:00
|
|
|
TranslatorHelper.h \
|
2015-10-10 18:45:57 +07:00
|
|
|
RecognizerHelper.h \
|
|
|
|
Utils.h
|
2013-11-23 13:48:34 +07:00
|
|
|
|
|
|
|
FORMS += \
|
|
|
|
SettingsEditor.ui \
|
2013-11-26 13:44:00 +07:00
|
|
|
SelectionDialog.ui \
|
|
|
|
ResultDialog.ui
|
2013-11-23 13:48:34 +07:00
|
|
|
|
|
|
|
RESOURCES += \
|
|
|
|
Recources.qrc
|
2013-11-24 20:44:04 +07:00
|
|
|
|
2014-01-30 01:30:24 +07:00
|
|
|
TRANSLATIONS += \
|
2014-04-03 23:46:15 +07:00
|
|
|
translations/translation_en.ts \
|
|
|
|
translations/translation_ru.ts
|
2014-01-30 01:30:24 +07:00
|
|
|
|
2013-11-24 20:44:04 +07:00
|
|
|
OTHER_FILES += \
|
2013-11-24 20:44:20 +07:00
|
|
|
app.rc \
|
2014-02-08 21:04:42 +07:00
|
|
|
images/icon.ico \
|
2015-09-23 01:41:08 +07:00
|
|
|
README.md \
|
2015-09-30 23:49:10 +07:00
|
|
|
uncrustify.cfg\
|
2015-10-08 22:36:02 +07:00
|
|
|
translators/google.js \
|
2015-10-10 03:18:22 +07:00
|
|
|
translators/yandex.js \
|
|
|
|
translators/bing.js \
|
2015-09-30 23:49:10 +07:00
|
|
|
TODO.md
|