1 | VERSION = 3.0.0 |
---|
2 | CONFIG += qt \ |
---|
3 | thread |
---|
4 | TARGET = smssender-bin |
---|
5 | QT += core \ |
---|
6 | gui \ |
---|
7 | sql |
---|
8 | LIBS += -Llib/ |
---|
9 | LIBS += -lcrypto++ \ |
---|
10 | -ldatatypes \ |
---|
11 | -lutils |
---|
12 | INCLUDEPATH += src/ \ |
---|
13 | src/ui/components \ |
---|
14 | lib/libdatatypes/src/interfaces \ |
---|
15 | lib/libdatatypes/src/exceptions \ |
---|
16 | lib/libdatatypes/src \ |
---|
17 | lib/libutils/src \ |
---|
18 | include/ |
---|
19 | HEADERS += src/ui/models/accounttreemodel.h \ |
---|
20 | src/ui/models/loadedaccountmodel.h \ |
---|
21 | src/ui/models/grouptablemodel.h \ |
---|
22 | src/ui/models/contacttablemodel.h \ |
---|
23 | src/persistence/storage/DAAccountListManager.h \ |
---|
24 | src/persistence/storage/DAStorage.h \ |
---|
25 | src/ui/models/contactgroupmodel.h \ |
---|
26 | src/ui/models/aliascompletionmodel.h \ |
---|
27 | src/ui/completers/bettercompleter.h \ |
---|
28 | src/ui/delegates/aligndelegate.h \ |
---|
29 | src/ui/components/clearbutton.h \ |
---|
30 | src/ui/components/lineedit.h \ |
---|
31 | src/ui/components/lineedit_p.h \ |
---|
32 | src/ui/components/searchbutton.h \ |
---|
33 | src/ui/components/searchlineedit.h \ |
---|
34 | src/ui/VCEditAccount/vceditaccount.h \ |
---|
35 | src/ui/VCAccountList/vcaccountlist.h \ |
---|
36 | src/business/BCAccountLoadThread.h \ |
---|
37 | src/business/BCGatewayManager.h \ |
---|
38 | src/persistence/DAAccountManager.h \ |
---|
39 | src/business/BCAccountManager.h \ |
---|
40 | src/business/BCAccountLoadManager.h \ |
---|
41 | src/business/BCLibraryLoader.h \ |
---|
42 | src/ui/VCEditGroup/vceditgroup.h \ |
---|
43 | src/persistence/DAGroupManager.h \ |
---|
44 | src/business/BCGroupManager.h \ |
---|
45 | src/ui/VCEditContact/vceditcontact.h \ |
---|
46 | src/persistence/DASettings.h \ |
---|
47 | src/ui/VCAddressBook/vcaddressbook.h \ |
---|
48 | src/business/BCContactManager.h \ |
---|
49 | src/business/BusinessFactory.h \ |
---|
50 | src/persistence/DAContactManager.h \ |
---|
51 | src/business/BCSettings.h \ |
---|
52 | src/persistence/PersistenceFactory.h \ |
---|
53 | src/ui/VCMain/vcmain.h \ |
---|
54 | src/ui/VCSettings/vcsettings.h |
---|
55 | SOURCES += src/ui/models/accounttreemodel.cpp \ |
---|
56 | src/ui/models/loadedaccountmodel.cpp \ |
---|
57 | src/ui/models/grouptablemodel.cpp \ |
---|
58 | src/ui/models/contacttablemodel.cpp \ |
---|
59 | src/persistence/storage/DAAccountListManager.cpp \ |
---|
60 | src/persistence/storage/DAStorage.cpp \ |
---|
61 | src/ui/models/contactgroupmodel.cpp \ |
---|
62 | src/ui/models/aliascompletionmodel.cpp \ |
---|
63 | src/ui/completers/bettercompleter.cpp \ |
---|
64 | src/ui/delegates/aligndelegate.cpp \ |
---|
65 | src/ui/components/clearbutton.cpp \ |
---|
66 | src/ui/components/lineedit.cpp \ |
---|
67 | src/ui/components/searchbutton.cpp \ |
---|
68 | src/ui/components/searchlineedit.cpp \ |
---|
69 | src/ui/VCEditAccount/vceditaccount.cpp \ |
---|
70 | src/ui/VCAccountList/vcaccountlist.cpp \ |
---|
71 | src/business/BCAccountLoadThread.cpp \ |
---|
72 | src/business/BCGatewayManager.cpp \ |
---|
73 | src/persistence/DAAccountManager.cpp \ |
---|
74 | src/business/BCAccountManager.cpp \ |
---|
75 | src/business/BCAccountLoadManager.cpp \ |
---|
76 | src/business/BCLibraryLoader.cpp \ |
---|
77 | src/ui/VCEditGroup/vceditgroup.cpp \ |
---|
78 | src/persistence/DAGroupManager.cpp \ |
---|
79 | src/business/BCGroupManager.cpp \ |
---|
80 | src/ui/VCEditContact/vceditcontact.cpp \ |
---|
81 | src/persistence/DASettings.cpp \ |
---|
82 | src/ui/VCAddressBook/vcaddressbook.cpp \ |
---|
83 | src/business/BCContactManager.cpp \ |
---|
84 | src/business/BusinessFactory.cpp \ |
---|
85 | src/business/BCSettings.cpp \ |
---|
86 | src/persistence/PersistenceFactory.cpp \ |
---|
87 | src/persistence/DAContactManager.cpp \ |
---|
88 | src/main.cpp \ |
---|
89 | src/ui/VCMain/vcmain.cpp \ |
---|
90 | src/ui/VCSettings/vcsettings.cpp |
---|
91 | FORMS += src/ui/VCEditAccount/vceditaccount.ui \ |
---|
92 | src/ui/VCAccountList/vcaccountlist.ui \ |
---|
93 | src/ui/VCEditGroup/vceditgroup.ui \ |
---|
94 | src/ui/VCEditContact/vceditcontact.ui \ |
---|
95 | src/ui/VCAddressBook/vcaddressbook.ui \ |
---|
96 | src/ui/VCMain/vcmain.ui \ |
---|
97 | src/ui/VCSettings/vcsettings.ui |
---|
98 | RESOURCES += lib/resource.qrc |
---|
99 | TRANSLATIONS += locale/de.ts |
---|