| 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 | 
 
 
 
 
 
 
 
 
 
 | 22 | 
 > | 
 LIBS += -L../Libs/zlib-1.2.8 -lz | 
 
 
 
 
 
 
 
 
 
 
 
 | 23 | 
   | 
 INCLUDEPATH += ../Libs/quazip-0.7.2/quazip | 
 
 
 
 
 
 
 
 
 | 24 | 
 + | 
 win32 { | 
 
 
 
 
 
 
 
 
 
 
 
 
 
 | 25 | 
   | 
 LIBS += -L../Libs/quazip-0.7.2/quazip/release -lquazip | 
 
 
 
 
 
 
 
 
 | 26 | 
 + | 
 } | 
 
 
 
 
 
 
 
 
 | 27 | 
 + | 
 macx { | 
 
 
 
 
 
 
 
 
 | 28 | 
 + | 
 LIBS += -L../Libs/quazip-0.7.2/quazip -lquazip | 
 
 
 
 
 
 
 
 
 | 29 | 
 + | 
 } | 
 
 
 
 
 
 
 
 
 
 
 
 
 
 | 30 | 
   | 
  | 
 
 
 
 
 
 
 
 
 
 
 
 
 
 | 31 | 
   | 
 macx { | 
 
 
 
 
 
 
 
 
 
 
 
 
 
 | 32 | 
   | 
 LIBS += -lz # for mac support zipping (thanks edt!) |