浏览代码

BUG: In Documentation/CMakeLists.txt, display warning using MESSAGE(WARNING ..) instead of MESSAGE( SEND_ERROR ...)

That was causing the configure process to stop.
Jean-Christophe Fillion-Robin 15 年之前
父节点
当前提交
2097eab5f8
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      Documentation/CMakeLists.txt

+ 1 - 1
Documentation/CMakeLists.txt

@@ -27,7 +27,7 @@ IF( DOXYGEN_FOUND )
       DEPENDS ${CTK_BINARY_DIR}/Documentation/DevDoxyfile.txt
     ) 
   ELSE( DOXYGEN_DOT_FOUND )
-    MESSAGE( SEND_ERROR
+    MESSAGE( WARNING
       "Warning: Dot not found - Documentation will not be created"
       )
   ENDIF( DOXYGEN_DOT_FOUND )