Advertisement
tasuku

Untitled

Mar 22nd, 2017
398
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.35 KB | None | 0 0
  1. diff --git a/Qt7z/Qt7z/Qt7z.pro b/Qt7z/Qt7z/Qt7z.pro
  2. index 442df84..dadacd5 100644
  3. --- a/Qt7z/Qt7z/Qt7z.pro
  4. +++ b/Qt7z/Qt7z/Qt7z.pro
  5. @@ -10,7 +10,7 @@ TARGET = Qt7z
  6. TEMPLATE = lib
  7. CONFIG += staticlib
  8.  
  9. -include("Qt7z.pri")
  10. +include("qt7z.pri")
  11.  
  12. unix {
  13. target.path = /usr/lib
  14. diff --git a/QuickViewer/QuickViewer.pro b/QuickViewer/QuickViewer.pro
  15. index 3cbdceb..35ce838 100644
  16. --- a/QuickViewer/QuickViewer.pro
  17. +++ b/QuickViewer/QuickViewer.pro
  18. @@ -4,7 +4,7 @@
  19. #
  20. #-------------------------------------------------
  21.  
  22. -QT += core gui opengl concurrent
  23. +QT += core gui opengl concurrent gui-private
  24.  
  25. greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
  26.  
  27. @@ -15,9 +15,9 @@ INCLUDEPATH += ../Qt7z/Qt7z
  28.  
  29.  
  30. CONFIG(debug,debug|release) {
  31. -LIBS += -L../Qt7z/Qt7z/debug -lQt7z
  32. +LIBS += -L../Qt7z/Qt7z -lQt7z
  33. } else {
  34. -LIBS += -L../Qt7z/Qt7z/release -lQt7z
  35. }
  36.  
  37. SOURCES += main.cpp\
  38. diff --git a/QuickViewer/filevolumeziparchive.h b/QuickViewer/filevolumeziparchive.h
  39. index e2c9a0f..cdc4e4d 100644
  40. --- a/QuickViewer/filevolumeziparchive.h
  41. +++ b/QuickViewer/filevolumeziparchive.h
  42. @@ -2,7 +2,7 @@
  43. #define FILEVOLUMEZIPARCHIVE_H
  44.  
  45. #include <QObject>
  46. -#include <QtGui/5.7.0/QtGui/private/qzipreader_p.h>
  47. +#include <QtGui/private/qzipreader_p.h>
  48. #include "filevolume.h"
  49.  
  50. class FileVolumeZipArchive : public IFileVolume
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement