[kde-common/cmake] rename QT_INCLUDE_DIR to QT_INCLUDE_DIRS and QT_LIBRARY_DIR to QT_LIBRARY_DIRS

git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kde-common@1186920 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
master
samelian 14 years ago
parent ce53981f65
commit 955e3bfa94

@ -52,37 +52,37 @@ if( NOT QT_FOUND )
# try to find path to qt.h # try to find path to qt.h
# we assume that this path is Qt's include path # we assume that this path is Qt's include path
find_path( QT_INCLUDE_DIR qt.h find_path( QT_INCLUDE_DIRS qt.h
${QT_INCLUDE_DIR} ${QT_INCLUDE_DIRS}
${QTDIR}/include ${QTDIR}/include
$ENV{QTDIR}/include ) $ENV{QTDIR}/include )
if( NOT QT_INCLUDE_DIR ) if( NOT QT_INCLUDE_DIRS )
tde_message_fatal( tde_message_fatal(
"Unable to find qt.h! "Unable to find qt.h!
Qt are correctly installed? Qt are correctly installed?
Try to set QT_INCLUDE_DIR manually. Try to set QT_INCLUDE_DIRS manually.
Example: cmake -DQT_INCLUDE_DIR=/usr/qt/3/include" ) Example: cmake -DQT_INCLUDE_DIRS=/usr/qt/3/include" )
endif( NOT QT_INCLUDE_DIR ) endif( NOT QT_INCLUDE_DIRS )
# try to find libqt-mt.so # try to find libqt-mt.so
# we assume that this is Qt's libraries path # we assume that this is Qt's libraries path
find_path( QT_LIBRARY_DIR libqt-mt.so find_path( QT_LIBRARY_DIRS libqt-mt.so
${QT_LIBRARY_DIR} ${QT_LIBRARY_DIRS}
${QTDIR}/lib ${QTDIR}/lib
$ENV{QTDIR}/lib ) $ENV{QTDIR}/lib )
if( NOT QT_LIBRARY_DIR ) if( NOT QT_LIBRARY_DIRS )
tde_message_fatal( tde_message_fatal(
"Unable to find libqt-mt.so! "Unable to find libqt-mt.so!
Qt are correctly installed? Qt are correctly installed?
Try to set QT_LIBRARY_DIR manually. Try to set QT_LIBRARY_DIRS manually.
Example: cmake -DQT_LIBRARY_DIR=/usr/qt/3/lib" ) Example: cmake -DQT_LIBRARY_DIRS=/usr/qt/3/lib" )
endif( NOT QT_LIBRARY_DIR ) endif( NOT QT_LIBRARY_DIRS )
message( STATUS " found Qt, version ${__version}" ) message( STATUS " found Qt, version ${__version}" )
set( QT_FOUND true CACHE INTERNAL QT_FOUND FORCE ) set( QT_FOUND true CACHE INTERNAL QT_FOUND FORCE )

Loading…
Cancel
Save