Update build paths and flags
This commit is contained in:
parent
7a2d512a81
commit
9356f4cb1f
@ -12,17 +12,18 @@ TARGET = ScreenTranslator
|
|||||||
TEMPLATE = app
|
TEMPLATE = app
|
||||||
CONFIG += c++11
|
CONFIG += c++11
|
||||||
|
|
||||||
|
INCLUDEPATH += $$(DEPS_DIR)/include
|
||||||
|
LIBS += -L$$(DEPS_DIR)/lib
|
||||||
|
|
||||||
win32{
|
win32{
|
||||||
INCLUDEPATH += $$PWD/../build/mingw/deps/include
|
LIBS += --lUser32 -lws2_32
|
||||||
LIBS += -L$$PWD/../build/mingw/deps/lib -lUser32 -lws2_32
|
|
||||||
}
|
}
|
||||||
linux{
|
linux{
|
||||||
QT += x11extras
|
QT += x11extras
|
||||||
INCLUDEPATH += $$PWD/../build/linux/deps/include
|
LIBS += -lX11 -Wl,-rpath,.
|
||||||
LIBS += -L$$PWD/../build/linux/deps/lib -lX11 -Wl,-rpath,.
|
|
||||||
}
|
}
|
||||||
|
|
||||||
LIBS += -ltesseract -llept
|
LIBS += -ltesseract -lleptonica
|
||||||
|
|
||||||
include(3rd-party/qtsingleapplication/qtsingleapplication.pri)
|
include(3rd-party/qtsingleapplication/qtsingleapplication.pri)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user