7 |
|
QT += widgets |
8 |
|
QT += network #network communication |
9 |
|
QT += script #for json parse |
10 |
+ |
win32 { |
11 |
+ |
QT += winextras |
12 |
+ |
} |
13 |
+ |
CONFIG += c++14 |
14 |
|
|
15 |
< |
INCLUDEPATH += $$[QT_INSTALL_HEADERS]/QtZlib |
12 |
< |
INCLUDEPATH += ./libs |
15 |
> |
#INCLUDEPATH += ./libs |
16 |
|
INCLUDEPATH += ./packageWizard |
17 |
|
INCLUDEPATH += ./soundWizard |
18 |
|
|
19 |
+ |
# Used this great tutorial to build zlib and quazip: |
20 |
+ |
# http://www.antonioborondo.com/2014/10/22/zipping-and-unzipping-files-with-qt/ |
21 |
+ |
INCLUDEPATH += ../Libs/zlib-1.2.8 |
22 |
+ |
LIBS += -LC:../Libs/zlib-1.2.8 -lz |
23 |
+ |
INCLUDEPATH += ../Libs/quazip-0.7.2/quazip |
24 |
+ |
LIBS += -L../Libs/quazip-0.7.2/quazip/release -lquazip |
25 |
+ |
|
26 |
|
macx { |
27 |
|
LIBS += -lz # for mac support zipping (thanks edt!) |
28 |
|
ICON = vago_icon.icns # mac os icon |
45 |
|
droptablewidget.cpp \ |
46 |
|
converter.cpp \ |
47 |
|
about.cpp \ |
38 |
– |
libs/zipglobal.cpp \ |
39 |
– |
libs/zip.cpp \ |
40 |
– |
libs/unzip.cpp \ |
48 |
|
packageWizard/packagewizard.cpp \ |
49 |
|
packageWizard/packagepagefinal.cpp \ |
50 |
|
packageWizard/packagepage4.cpp \ |
55 |
|
soundWizard/soundpage4.cpp \ |
56 |
|
soundWizard/soundpagefinal.cpp \ |
57 |
|
soundWizard/soundwizard.cpp \ |
58 |
< |
xmlprocessor.cpp |
58 |
> |
xmlprocessor.cpp \ |
59 |
> |
libs/pugixml/pugixml.cpp \ |
60 |
> |
utilvago.cpp |
61 |
|
|
62 |
|
HEADERS += \ |
63 |
|
util.h \ |
68 |
|
droptablewidget.h \ |
69 |
|
converter.h \ |
70 |
|
about.h \ |
62 |
– |
libs/zipglobal.h \ |
63 |
– |
libs/zipentry_p.h \ |
64 |
– |
libs/zip_p.h \ |
65 |
– |
libs/zip.h \ |
66 |
– |
libs/unzip_p.h \ |
67 |
– |
libs/unzip.h \ |
71 |
|
packageWizard/packagewizard.h \ |
72 |
|
packageWizard/packagepagefinal.h \ |
73 |
|
packageWizard/packagepage4.h \ |
78 |
|
soundWizard/soundpage4.h \ |
79 |
|
soundWizard/soundpagefinal.h \ |
80 |
|
soundWizard/soundwizard.h \ |
81 |
< |
xmlprocessor.h |
81 |
> |
xmlprocessor.h \ |
82 |
> |
libs/pugixml/pugixml.hpp \ |
83 |
> |
utilvago.h |
84 |
|
|
85 |
< |
FORMS += mainwindow.ui \ |
85 |
> |
FORMS += \ |
86 |
> |
mainwindow.ui \ |
87 |
|
preferences.ui \ |
88 |
|
manualcommands.ui \ |
89 |
|
about.ui \ |
98 |
|
|
99 |
|
RESOURCES += \ |
100 |
|
resources.qrc \ |
95 |
– |
|
96 |
– |
CONFIG += c++11 |