Fix finding a custom Qt4 via -DQT_PATH
authorManuel Nickschas <sputnick@quassel-irc.org>
Sun, 23 Mar 2014 01:33:48 +0000 (02:33 +0100)
committerManuel Nickschas <sputnick@quassel-irc.org>
Sun, 23 Mar 2014 01:33:48 +0000 (02:33 +0100)
This CMake option has recently been renamed from QT to QT_PATH; we
really should actually use the new name...

CMakeLists.txt

index 32fc75f..76889d8 100644 (file)
@@ -143,8 +143,8 @@ if (USE_QT5)
 else()
     # Select a Qt installation here, if you don't want to use system Qt
     if(QT_PATH)
-        # FindQt4 will look for the qmake binary in $PATH, so we just prepend the Qt dir
-        set(ENV{PATH} ${QT}/bin:$ENV{PATH})
+        # FindQt4 will look for the qmake binary in $PATH, so we just prepend QT_PATH
+        set(ENV{PATH} ${QT_PATH}/bin:$ENV{PATH})
     endif()
 
     # Now that we have the correct $PATH, lets find Qt!