summaryrefslogtreecommitdiffstats
path: root/Modules
diff options
context:
space:
mode:
authorSebastien Barre <sebastien.barre@kitware.com>2001-10-26 15:22:09 (GMT)
committerSebastien Barre <sebastien.barre@kitware.com>2001-10-26 15:22:09 (GMT)
commit7c27b5c755ffc10819aba9aac3c74484b79ed38d (patch)
tree73e764586d62b3cde7d41a28ddcef56a7701f977 /Modules
parent47c7af3cc885a7ebf2e070667def573af49b673e (diff)
downloadCMake-7c27b5c755ffc10819aba9aac3c74484b79ed38d.zip
CMake-7c27b5c755ffc10819aba9aac3c74484b79ed38d.tar.gz
CMake-7c27b5c755ffc10819aba9aac3c74484b79ed38d.tar.bz2
VTK documentation framework
Diffstat (limited to 'Modules')
-rw-r--r--Modules/DocumentationVTK.cmake34
1 files changed, 34 insertions, 0 deletions
diff --git a/Modules/DocumentationVTK.cmake b/Modules/DocumentationVTK.cmake
new file mode 100644
index 0000000..3e7b8fa
--- /dev/null
+++ b/Modules/DocumentationVTK.cmake
@@ -0,0 +1,34 @@
+# DocumentationVTK.cmake
+#
+# This file provides support for the VTK documentation framework.
+# It relies on several tools (Doxygen, Perl, etc).
+
+#
+# Build the documentation ?
+#
+OPTION(BUILD_DOCUMENTATION "Build the documentation (Doxygen)." OFF)
+
+IF (BUILD_DOCUMENTATION)
+
+ #
+ # Check for the tools
+ #
+ INCLUDE(${CMAKE_ROOT}/Modules/FindCygwin.cmake)
+ INCLUDE(${CMAKE_ROOT}/Modules/FindDoxygen.cmake)
+ INCLUDE(${CMAKE_ROOT}/Modules/FindHhc.cmake)
+ INCLUDE(${CMAKE_ROOT}/Modules/FindPerl.cmake)
+ INCLUDE(${CMAKE_ROOT}/Modules/FindWget.cmake)
+
+ OPTION(DOCUMENTATION_HTML_HELP
+ "Build the HTML Help file (CHM)." OFF)
+
+ OPTION(DOCUMENTATION_HTML_TARZ
+ "Build a compressed tar archive of the HTML doc." OFF)
+
+ #
+ # The documentation process is controled by a batch file.
+ # We will probably need bash to create the custom target
+ #
+ FIND_PROGRAM(BASH bash)
+
+ENDIF (BUILD_DOCUMENTATION)