ScreenTranslator/ScreenTranslator.pro

58 lines
1.0 KiB
Prolog
Raw Normal View History

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
2014-01-30 01:30:24 +07:00
INCLUDEPATH += D:/Files/build/include
2013-11-24 19:43:37 +07:00
2014-01-30 01:30:24 +07:00
LIBS += -LD:/Files/build/bin -ltesseract
2013-11-23 13:48:34 +07:00
SOURCES += main.cpp\
Manager.cpp \
SettingsEditor.cpp \
SelectionDialog.cpp \
GlobalActionHelper.cpp \
Recognizer.cpp \
2013-11-26 13:44:00 +07:00
Translator.cpp \
ResultDialog.cpp \
ProcessingItem.cpp
2013-11-23 13:48:34 +07:00
HEADERS += \
Manager.h \
SettingsEditor.h \
SelectionDialog.h \
GlobalActionHelper.h \
Recognizer.h \
2013-11-24 19:43:37 +07:00
Translator.h \
2013-11-26 13:44:00 +07:00
Settings.h \
ProcessingItem.h \
ResultDialog.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 += \
translations/translation_en.ts
2013-11-24 20:44:04 +07:00
win32{
RC_FILE = app.rc
}
OTHER_FILES += \
2013-11-24 20:44:20 +07:00
app.rc \
2014-02-08 21:04:42 +07:00
images/icon.ico \
README.md