| 11 |
|
QT += winextras |
| 12 |
|
} |
| 13 |
|
CONFIG += c++14 |
| 14 |
+ |
CONFIG += quazip |
| 15 |
|
|
| 16 |
|
INCLUDEPATH += ./packageWizard |
| 17 |
|
INCLUDEPATH += ./soundWizard |
| 20 |
|
INCLUDEPATH += ./xmlToolsInterface |
| 21 |
|
INCLUDEPATH += ./windowMessagesWizard |
| 22 |
|
|
| 23 |
+ |
include(../CommonUtils/CommonUtils.pri) |
| 24 |
+ |
include(../CommonLibs/CommonLibs.pri) |
| 25 |
+ |
|
| 26 |
|
# Used this great tutorial to build zlib and quazip: |
| 27 |
|
# http://www.antonioborondo.com/2014/10/22/zipping-and-unzipping-files-with-qt/ |
| 24 |
– |
INCLUDEPATH += ../Libs/zlib-1.2.8 |
| 25 |
– |
LIBS += -L../Libs/zlib-1.2.8 -lz |
| 26 |
– |
INCLUDEPATH += ../Libs/quazip-0.7.2/quazip |
| 27 |
– |
win32 { |
| 28 |
– |
LIBS += -L../Libs/quazip-0.7.2/quazip/release -lquazip |
| 29 |
– |
} |
| 30 |
– |
macx { |
| 31 |
– |
LIBS += -L../Libs/quazip-0.7.2/quazip -lquazip |
| 32 |
– |
} |
| 28 |
|
|
| 29 |
|
macx { |
| 30 |
|
LIBS += -lz # for mac support zipping (thanks edt!) |
| 33 |
|
|
| 34 |
|
INCLUDEPATH += ./libs/DropTableWidget |
| 35 |
|
INCLUDEPATH += ./libs/DropLineEdit |
| 41 |
– |
INCLUDEPATH += ../Libs/pugixml |
| 36 |
|
|
| 37 |
|
win32 { |
| 38 |
|
RC_FILE = icon_resource.rc #for windows explorer icon |
| 42 |
|
TEMPLATE = app |
| 43 |
|
|
| 44 |
|
SOURCES += \ |
| 51 |
– |
util.cpp \ |
| 45 |
|
preferences.cpp \ |
| 46 |
|
manualcommands.cpp \ |
| 47 |
|
mainwindow.cpp \ |
| 48 |
|
main.cpp \ |
| 56 |
– |
logger.cpp \ |
| 49 |
|
converter.cpp \ |
| 50 |
|
about.cpp \ |
| 51 |
|
packageWizard/packagewizard.cpp \ |
| 66 |
|
bgImageWizard/bgimagepage3.cpp \ |
| 67 |
|
bgImageWizard/bgimagepagefinal.cpp \ |
| 68 |
|
xmlToolsInterface/xmltoolsinterface.cpp \ |
| 77 |
– |
libs/BasicXMLSyntaxHighlighter/BasicXMLSyntaxHighlighter.cpp \ |
| 69 |
|
xmlToolsInterface/xmltoolsinterfacecommandpreview.cpp \ |
| 79 |
– |
libs/LineNumberDisplay/LineNumberDisplay.cpp \ |
| 70 |
|
abstractwizard.cpp \ |
| 71 |
|
windowMessagesWizard/wmsetuppage.cpp \ |
| 72 |
|
windowMessagesWizard/wmformatpage.cpp \ |
| 75 |
|
windowMessagesWizard/wmfinalpage.cpp \ |
| 76 |
|
./libs/DropTableWidget/droptablewidget.cpp \ |
| 77 |
|
./libs/DropLineEdit/droplineedit.cpp \ |
| 78 |
< |
../Libs/pugixml/pugixml.cpp |
| 78 |
> |
xmlParsers/projectfilevago.cpp |
| 79 |
|
|
| 80 |
|
HEADERS += \ |
| 91 |
– |
util.h \ |
| 81 |
|
preferences.h \ |
| 82 |
|
manualcommands.h \ |
| 83 |
|
mainwindow.h \ |
| 95 |
– |
logger.h \ |
| 84 |
|
converter.h \ |
| 85 |
|
about.h \ |
| 86 |
|
packageWizard/packagewizard.h \ |
| 101 |
|
bgImageWizard/bgimagepage3.h \ |
| 102 |
|
bgImageWizard/bgimagepagefinal.h \ |
| 103 |
|
xmlToolsInterface/xmltoolsinterface.h \ |
| 116 |
– |
libs/BasicXMLSyntaxHighlighter/BasicXMLSyntaxHighlighter.h \ |
| 104 |
|
xmlToolsInterface/xmltoolsinterfacecommandpreview.h \ |
| 118 |
– |
libs/LineNumberDisplay/LineNumberDisplay.h \ |
| 105 |
|
wizardfactory.h \ |
| 106 |
|
abstractwizard.h \ |
| 107 |
|
windowMessagesWizard/wmsetuppage.h \ |
| 111 |
|
windowMessagesWizard/wmfinalpage.h \ |
| 112 |
|
./libs/DropTableWidget/droptablewidget.h \ |
| 113 |
|
./libs/DropLineEdit/droplineedit.h \ |
| 114 |
< |
../Libs/pugixml/pugixml.hpp |
| 114 |
> |
xmlParsers/projectfilevago.h |
| 115 |
|
|
| 116 |
|
FORMS += \ |
| 117 |
|
mainwindow.ui \ |