49 lines
853 B
Prolog
49 lines
853 B
Prolog
#-------------------------------------------------
|
|
#
|
|
# Project created by QtCreator 2013-11-22T12:00:23
|
|
#
|
|
#-------------------------------------------------
|
|
|
|
QT += core gui network webkitwidgets
|
|
|
|
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
|
|
|
|
TARGET = ScreenTranslator
|
|
TEMPLATE = app
|
|
|
|
INCLUDEPATH += C:/build/include
|
|
|
|
LIBS += -LC:/build/bin -ltesseract
|
|
|
|
SOURCES += main.cpp\
|
|
Manager.cpp \
|
|
SettingsEditor.cpp \
|
|
SelectionDialog.cpp \
|
|
GlobalActionHelper.cpp \
|
|
Recognizer.cpp \
|
|
Translator.cpp
|
|
|
|
HEADERS += \
|
|
Manager.h \
|
|
SettingsEditor.h \
|
|
SelectionDialog.h \
|
|
GlobalActionHelper.h \
|
|
Recognizer.h \
|
|
Translator.h \
|
|
Settings.h
|
|
|
|
FORMS += \
|
|
SettingsEditor.ui \
|
|
SelectionDialog.ui
|
|
|
|
RESOURCES += \
|
|
Recources.qrc
|
|
|
|
win32{
|
|
RC_FILE = app.rc
|
|
}
|
|
|
|
OTHER_FILES += \
|
|
app.rc \
|
|
images/icon.ico
|