-
Notifications
You must be signed in to change notification settings - Fork 0
/
qt-google-books.pro
70 lines (41 loc) · 1.01 KB
/
qt-google-books.pro
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#-------------------------------------------------
#
# Project created by QtCreator 2012-01-04T09:56:12
#
#-------------------------------------------------
QT += core gui webkit network
TARGET = qtbooks
TEMPLATE = app
INCLUDEPATH += ../qjson/include ../qt-oauth-lib
linux* {
LIBS += ../qjson/build/lib/libqjson.so -L../qt-oauth-lib -l qt-oauth-lib
}
win* {
LIBS += ../qjson/build/lib/qjson0.dll
debug {
LIBS += -L../qt-oauth-lib/debug -l qt-oauth-lib
}
release {
LIBS += -L../qt-oauth-lib/release -l qt-oauth-lib
}
}
macx* {
LIBS += -F../qjson/build/lib -framework qjson -L../qt-oauth-lib -l qt-oauth-lib
}
SOURCES += main.cpp\
mainwindow.cpp \
form.cpp \
books_data_manager.cpp \
finddialog.cpp \
reading_dialog.cpp
HEADERS += mainwindow.h \
form.h \
books_data_manager.h \
finddialog.h \
reading_dialog.h
FORMS += mainwindow.ui \
form.ui \
finddialog.ui \
reading_dialog.ui
RESOURCES += \
resource.qrc