-
Notifications
You must be signed in to change notification settings - Fork 88
/
feiq.pro
108 lines (93 loc) · 2.3 KB
/
feiq.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
#-------------------------------------------------
#
# Project created by QtCreator 2016-07-30T10:47:11
#
#-------------------------------------------------
QT += core gui network
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = feiq
TEMPLATE = app
LIBS += -liconv -lsqlite3
mac{
QT += macextras
ICON = icon.icns
LIBS += -framework Foundation
OBJECTIVE_SOURCES += osx/notification.mm\
osx/notificationimpl.mm
SOURCES += osx/osxplatform.cpp
HEADERS += osx/notification.h\
osx/osxplatform.h\
osx/notificationimpl.h
}
SOURCES += main.cpp\
mainwindow.cpp \
feiqlib/udpcommu.cpp \
feiqlib/feiqcommu.cpp \
feiqlib/feiqengine.cpp \
feiqlib/feiqmodel.cpp \
feiqlib/encoding.cpp \
feiqlib/tcpserver.cpp \
feiqlib/tcpsocket.cpp \
feiqlib/utils.cpp \
feiqlib/uniqueid.cpp \
feiqlib/filetask.cpp \
feiqlib/defer.cpp \
feiqlib/asynwait.cpp \
feiqlib/history.cpp \
fellowlistwidget.cpp \
searchfellowdlg.cpp \
recvtextedit.cpp \
filemanagerdlg.cpp \
addfellowdialog.cpp \
emoji.cpp \
chooseemojidlg.cpp \
platformdepend.cpp \
chooseemojiwidget.cpp \
sendtextedit.cpp \
feiqwin.cpp \
plugin/iplugin.cpp \
plugin/rankuser.cpp \
settings.cpp
HEADERS += mainwindow.h \
feiqlib/ipmsg.h \
feiqlib/udpcommu.h \
feiqlib/feiqcommu.h \
feiqlib/protocol.h \
feiqlib/post.h \
feiqlib/content.h \
feiqlib/feiqengine.h \
feiqlib/feiqmodel.h \
feiqlib/fellow.h \
feiqlib/ifeiqview.h \
feiqlib/msgqueuethread.h \
feiqlib/encoding.h \
feiqlib/tcpserver.h \
feiqlib/tcpsocket.h \
feiqlib/utils.h \
feiqlib/uniqueid.h \
feiqlib/filetask.h \
feiqlib/defer.h \
feiqlib/asynwait.h \
feiqlib/history.h \
feiqlib/parcelable.h \
fellowlistwidget.h \
searchfellowdlg.h \
recvtextedit.h \
filemanagerdlg.h \
addfellowdialog.h \
emoji.h \
chooseemojidlg.h \
platformdepend.h \
chooseemojiwidget.h \
sendtextedit.h \
plugin/iplugin.h \
feiqwin.h \
plugin/rankuser.h \
settings.h
FORMS += mainwindow.ui \
searchfellowdlg.ui \
downloadfiledlg.ui \
addfellowdialog.ui \
chooseemojidlg.ui
RESOURCES += \
default.qrc