From: Manuel Nickschas Date: Sun, 1 Apr 2012 22:48:35 +0000 (+0200) Subject: Add QT_MIN_VERSION to the find_package call for Qt4 X-Git-Tag: 0.9-beta1~74 X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=commitdiff_plain;h=b9b05878084dc6bdfea11506ac70deb8eacafa62 Add QT_MIN_VERSION to the find_package call for Qt4 --- diff --git a/CMakeLists.txt b/CMakeLists.txt index 3170180e..f377a189 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -199,7 +199,7 @@ else(WITH_QT5) endif(QT) # Now that we have the correct $PATH, lets find Qt! - find_package(Qt4 REQUIRED) + find_package(Qt4 ${QT_MIN_VERSION} REQUIRED) endif(WITH_QT5)