From: Manuel Nickschas Date: Thu, 26 Nov 2009 16:35:33 +0000 (+0100) Subject: Quassel Client (and monolithic) needs >=Qt 4.5.0 now X-Git-Tag: 0.6-beta1~154 X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=commitdiff_plain;h=890470ac2987f7603fd3fd6f2031513f7cc7c708;ds=sidebyside Quassel Client (and monolithic) needs >=Qt 4.5.0 now Core still can be built with Qt 4.4, but for the GUI bits, supporting this long since deprecated Qt is getting quite cumbersome. We'll use quite some 4.5 features in the future. --- diff --git a/CMakeLists.txt b/CMakeLists.txt index 0a811c36..7df90793 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -113,7 +113,7 @@ if(CMAKE_COMPILER_IS_GNUCXX) endif(CMAKE_COMPILER_IS_GNUCXX) if(WANT_MONO OR WANT_QTCLIENT) - set(QT_MIN_VERSION "4.4.1") # Client crashes often with 4.4.0 + set(QT_MIN_VERSION "4.5.0") else(WANT_MONO OR WANT_QTCLIENT) set(QT_MIN_VERSION "4.4.0") endif(WANT_MONO OR WANT_QTCLIENT)