From: Manuel Nickschas Date: Sun, 23 Mar 2014 01:33:48 +0000 (+0100) Subject: Fix finding a custom Qt4 via -DQT_PATH X-Git-Tag: 0.11.0~93 X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=commitdiff_plain;h=60013b8987abc643a31fecf185d463973e009915;hp=887c09b182a46886d9b0ba89e2c251164b6e8f0e Fix finding a custom Qt4 via -DQT_PATH This CMake option has recently been renamed from QT to QT_PATH; we really should actually use the new name... --- diff --git a/CMakeLists.txt b/CMakeLists.txt index 32fc75f2..76889d81 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -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!