summaryrefslogtreecommitdiff
path: root/Modules/FindQt3.cmake
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2006-03-06 14:08:15 -0500
committerBill Hoffman <bill.hoffman@kitware.com>2006-03-06 14:08:15 -0500
commite037fbaf7dbc6fdcd2ceb20a7d23c6286f293048 (patch)
tree5a6f5055b95d590ba78af9375e9a1403af924800 /Modules/FindQt3.cmake
parent12ebc4339a8d1a9dbc072c82f7be891dffab0c1e (diff)
downloadcmake-e037fbaf7dbc6fdcd2ceb20a7d23c6286f293048.tar.gz
ENH: try to fix non-clean dashboards
Diffstat (limited to 'Modules/FindQt3.cmake')
-rw-r--r--Modules/FindQt3.cmake6
1 files changed, 6 insertions, 0 deletions
diff --git a/Modules/FindQt3.cmake b/Modules/FindQt3.cmake
index 6c24779195..41facd41b3 100644
--- a/Modules/FindQt3.cmake
+++ b/Modules/FindQt3.cmake
@@ -38,6 +38,12 @@ FIND_PATH(QT_INCLUDE_DIR qt.h
/usr/X11R6/include
)
+# if qglobal.h is not in the qt_include_dir then set
+# QT_INCLUDE_DIR to NOTFOUND
+IF(NOT EXISTS ${QT_INCLUDE_DIR}/qglobal.h)
+ SET(QT_INCLUDE_DIR QT_INCLUDE_DIR-NOTFOUND CACHE PATH "path to qt3 include directory" FORCE)
+ENDIF(NOT EXISTS ${QT_INCLUDE_DIR}/qglobal.h)
+
IF(QT_INCLUDE_DIR)
#extract the version string from qglobal.h
FILE(READ ${QT_INCLUDE_DIR}/qglobal.h QGLOBAL_H)