-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathQween.pro
executable file
·117 lines (116 loc) · 2.9 KB
/
Qween.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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
# -------------------------------------------------
# Project created by QtCreator 2009-12-20T20:03:58
# -------------------------------------------------
CONFIG += qt \
debug
QT += network \
\ \ # webkit \
xml
TARGET = Qween
TEMPLATE = app
INCLUDEPATH += ./shorturi
DEPENDPATH += ./shorturi
win32:LIBS += -lssl32 \
-leay32
unix:LIBS += -lssl
macx:LIBS += -lcrypto
win32:RC_FILE = res/windows.rc
# Kilroy was here
SOURCES += main.cpp \
qweenmainwindow.cpp \
qweensettings.cpp \
aboutdialog.cpp \
settingdialog.cpp \
qweentabctrl.cpp \
tabinfo.cpp \
timelinelistview.cpp \
timelinemodel.cpp \
timelinetableview.cpp \
timelineitemdelegate.cpp \
timelineview.cpp \
qweeninputbox.cpp \
shorturi/bitly.cpp \
iconmanager.cpp \
qweenapplication.cpp \
shorturi/urishortensvc.cpp \
shorturi/simpleurishortener.cpp \
forwardingrule.cpp \
shorturi/shorturiresolver.cpp \
forwardruledialog.cpp \
tabsettingsdialog.cpp \
usersmodel.cpp \
hashtagmodel.cpp \
petrel/petrel.cpp \
petrel/types_impl.cpp \
shorturi/shorturicache.cpp \
xauth.cpp \
util.cpp \
statusbrowser.cpp \
twitter.cpp \
placeholderedit46.cpp \
tabselectdialog.cpp \
thumbmanager.cpp \
multiplelineedit.cpp \
testingdialog.cpp
HEADERS += qweenmainwindow.h \
twitter.h \
qweensettings.h \
aboutdialog.h \
settingdialog.h \
qweentabctrl.h \
tabinfo.h \
timelinelistview.h \
const.h \
timelinemodel.h \
timelinetableview.h \
timelineitemdelegate.h \
timelineview.h \
qweeninputbox.h \
shorturi/abstracturishortener.h \
shorturi/bitly.h \
shorturi/urishortensvc.h \
shorturi/tinyurl.h \
shorturi/isgd.h \
shorturi/unu.h \
shorturi/twurl.h \
iconmanager.h \
qweenapplication.h \
shorturi/simpleurishortener.h \
forwardingrule.h \
shorturi/shorturiresolver.h \
forwardruledialog.h \
tabsettingsdialog.h \
usersmodel.h \
hashtagmodel.h \
petrel/petrel.h \
petrel/types.h \
shorturi/shorturicache.h \
xauth.h \
util.h \
statusbrowser.h \
placeholderedit46.h \
tabselectdialog.h \
thumbmanager.h \
multiplelineedit.h \
testingdialog.h
FORMS += qweenmainwindow.ui \
aboutdialog.ui \
settingdialog.ui \
forwardruledialog.ui \
tabsettingsdialog.ui \
tabselectdialog.ui \
testingdialog.ui
OTHER_FILES += memo.txt \
LICENSE.txt \
get_git_info.sh
RESOURCES += res.qrc
win32 {
message(GET_GIT_INFO)
SHPATH = C:\cygwin\bin\sh.exe
CONFIG(debug, debug|release):system($$SHPATH get_git_info.sh debug)
else:system($$SHPATH get_git_info.sh release)
}
unix {
CONFIG(debug, debug|release):system(./get_git_info.sh .)
else:system(./get_git_info.sh .)
}