FindQt: add some more places to look for Qt3

Qt3 may be e.g. in /usr/lib64/qt-3 or in /usr/lib/qt3, too.
This commit is contained in:
Rolf Eike Beer 2012-10-24 19:52:58 +02:00
parent 7bb9395974
commit 041fb29bd7
1 changed files with 1 additions and 1 deletions

View File

@ -31,7 +31,7 @@
# License text for the above reference.) # License text for the above reference.)
# look for signs of qt3 installations # look for signs of qt3 installations
file(GLOB GLOB_TEMP_VAR /usr/lib/qt-3*/bin/qmake) file(GLOB GLOB_TEMP_VAR /usr/lib*/qt-3*/bin/qmake /usr/lib*/qt3*/bin/qmake)
if(GLOB_TEMP_VAR) if(GLOB_TEMP_VAR)
set(QT3_INSTALLED TRUE) set(QT3_INSTALLED TRUE)
endif() endif()