From 38450ebb2da5e7b6e6b2209838c3726eb69cb9e8 Mon Sep 17 00:00:00 2001 From: Jim Evins Date: Wed, 26 Aug 2015 15:31:55 -0400 Subject: [PATCH] Use MINGW zlib instead of MSYS on Windows. --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index e9748e6..17e81db 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -16,8 +16,8 @@ set (Package_Version "${Major_Version}.${Minor_Version}.${Bugfix_Version}") set (Unique_Package_Name ${Package_Name}-${API_Version}) if (WIN32) - # Make sure we can find MSys libraries - set (CMAKE_PREFIX_PATH C:/MinGW/msys/1.0 ) + # Make sure we can find MINGW libraries, e.g. zlib + set (CMAKE_PREFIX_PATH C:/MinGW ) endif () find_package(Qt4 4.8.4 REQUIRED QtCore QtGui QtXml)