Blob Blame History Raw
diff -up marble-14.12.3/cmake/modules/Findquazip.cmake.quazip marble-14.12.3/cmake/modules/Findquazip.cmake
--- marble-14.12.3/cmake/modules/Findquazip.cmake.quazip	2015-02-23 02:27:55.000000000 -0600
+++ marble-14.12.3/cmake/modules/Findquazip.cmake	2015-03-12 12:04:25.222115177 -0500
@@ -7,7 +7,11 @@ if(QUAZIP_INCLUDE_DIR AND QUAZIP_LIBRARI
 else(QUAZIP_INCLUDE_DIR AND QUAZIP_LIBRARIES)
 
   find_path(QUAZIP_INCLUDE_DIR NAMES quazip/quazip.h)
+  if(QT5BUILD)
+  find_library(QUAZIP_LIBRARIES NAMES quazip-qt5)
+  else(QT5BUILD)
   find_library(QUAZIP_LIBRARIES NAMES quazip)
+  endif(QT5BUILD)
 
   include(FindPackageHandleStandardArgs)
   find_package_handle_standard_args(quazip DEFAULT_MSG QUAZIP_INCLUDE_DIR QUAZIP_LIBRARIES)