-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGUI.pro
executable file
·50 lines (50 loc) · 1.35 KB
/
GUI.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
QT += network \
xml
SOURCES += Message/MsgDestination.cpp \
Message/Msg.cpp \
Message/InstantSMS.cpp \
Message/ScheduledSMS.cpp \
Account/FeatherAccount.cpp \
Account/AccountManager.cpp \
Forms/DialogCertification.cpp \
Message/MsgManager.cpp \
Message/AbstractMsgList.cpp \
Message/MsgItem.cpp \
Message/InstantSMSList.cpp \
Message/ScheduledSMSList.cpp \
Account/AccountList_TagItem_AccountItem.cpp \
Account/AccountList_TagItem.cpp \
Account/AccountList_TagItem_AccountItem_GroupItem.cpp \
Account/AccountList.cpp \
Forms/MainWindow.cpp \
main.cpp \
Account/AccountStatisticsList.cpp \
Account/AccountStatisticsList_TagItem.cpp \
Account/AccountStatisticsList_TagItem_AccountItem.cpp
HEADERS += Message/Msg.h \
Message/MsgManager.h \
Account/FeatherAccount.h \
Account/AccountManager.h \
Forms/DialogCertification.h \
Message/MsgList.h \
Account/AccountList.h \
Forms/MainWindow.h \
Account/AccountStatisticsList.h
FORMS = Forms/MainWindow.ui \
Forms/DialogCertification.ui
INCLUDEPATH += include/ \
Feather/include/ \
.
unix {
LIBS += ./Feather/libFeather.a \
-lssl
CONFIG += debug
}
win32 {
LIBS += ./libcurldll.a \
./libeay32.lib \
./Feather/libFeather.a
CONFIG += release
}
TARGET = FeatherGUI
TEMPLATE = app