-
Notifications
You must be signed in to change notification settings - Fork 3
/
SailfishWeibo-bak.pro
102 lines (93 loc) · 3.13 KB
/
SailfishWeibo-bak.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
# NOTICE:
#
# Application name defined in TARGET has a corresponding QML filename.
# If name defined in TARGET is changed, the following needs to be done
# to match new name:
# - corresponding QML filename must be changed
# - desktop icon filename must be changed
# - desktop filename must be changed
# - icon definition filename in desktop file must be changed
# - translation filenames have to be changed
# The name of your application
TARGET = SailfishWeibo
CONFIG += sailfishapp
SOURCES += src/SailfishWeibo.cpp \
src/networkhelper.cpp \
src/mytype.cpp \
src/MyNetworkAccessManagerFactory.cpp \
src/Util.cpp \
src/Emoticons.cpp
OTHER_FILES += qml/SailfishWeibo.qml \
qml/cover/CoverPage.qml \
qml/pages/FirstPage.qml \
qml/pages/SecondPage.qml \
rpm/SailfishWeibo.changes.in \
rpm/SailfishWeibo.spec \
rpm/SailfishWeibo.yaml \
translations/*.ts \
SailfishWeibo.desktop \
qml/aesyweibo.qml \
qml/components/Notification.qml \
qml/components/FooterLoadMore.qml \
qml/components/DelegateWeibo.qml \
qml/components/DelegateRepostedWeibo.qml \
qml/graphics/up.png \
qml/graphics/[email protected] \
qml/graphics/Thumbs.db \
qml/graphics/reload.svg \
qml/graphics/folder.png \
qml/graphics/edit.svg \
qml/js/weiboapi.js \
qml/js/getURL.js \
qml/js/dateutils.js \
qml/js/addImages.js \
qml/js/WeiboApiHandler.qml \
qml/ui/WeiboTab.qml \
qml/ui/WeiboPage.qml \
qml/ui/WeiboMentioned.qml \
qml/ui/UserWeibo.qml \
qml/ui/UserTab.qml \
qml/ui/UserPhoto.qml \
qml/ui/UserPage.qml \
qml/ui/SettingTab.qml \
qml/ui/SendPage.qml \
qml/ui/MessageTab.qml \
qml/ui/LocalPhotoPicker.qml \
qml/ui/HelloTab.qml \
qml/ui/Gallery.qml \
qml/ui/FriendsPage.qml \
qml/ui/CommentMentioned.qml \
qml/ui/CommentAllPage.qml \
qml/ui/AboutPage.qml \
qml/js/LocalStore.js \
qml/js/Settings.js \
qml/components/MainComponent.qml \
qml/ui/BusyIndicator.qml \
qml/ui/SendPage.qml.bak \
qml/components/AtUserComponent.qml \
qml/graphics/mask_background_grid.png \
qml/graphics/mask_background_reposted.png \
qml/graphics/notifactionbar.png \
qml/graphics/arrow_right.png \
qml/components/ImagePreviewComponent.qml \
qml/pages/AboutPage.qml \
qml/components/LoginComponent.qml \
translations/SailfishWeibo-zh_CN.ts \
qml/emoticons/*
# to disable building translations every time, comment out the
# following CONFIG line
CONFIG += sailfishapp_i18n
TRANSLATIONS += translations/SailfishWeibo-de.ts \
translations/SailfishWeibo-zh_CN.ts
HEADERS += \
src/networkhelper.h \
src/mytype.h \
src/app.h \
src/MyNetworkAccessManagerFactory.h \
src/Util.h \
src/Emoticons.h
win32:CONFIG(release, debug|release): LIBS += -L$$OUT_PWD/../QSinaWeiboApi/weiboAPI/ -lSailfishWeibo
else:win32:CONFIG(debug, debug|release): LIBS += -L$$OUT_PWD/../QSinaWeiboApi/weiboAPI/ -lSailfishWeibod
else:unix: LIBS += -L$$OUT_PWD/../QSinaWeiboApi/weiboAPI/ -lSailfishWeibo
INCLUDEPATH += $$PWD/../QSinaWeiboApi/weiboAPI
DEPENDPATH += $$PWD/../QSinaWeiboApi/weiboAPI