瀏覽代碼

ENH: try to fix non-clean dashboards

Bill Hoffman 19 年之前
父節點
當前提交
e037fbaf7d
共有 1 個文件被更改,包括 6 次插入0 次删除
  1. 6 0
      Modules/FindQt3.cmake

+ 6 - 0
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)