2016-09-27 22:01:08 +03:00
|
|
|
# Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
|
|
|
# file Copyright.txt or https://cmake.org/licensing for details.
|
|
|
|
|
2013-10-15 19:17:36 +04:00
|
|
|
#.rst:
|
|
|
|
# Documentation
|
|
|
|
# -------------
|
|
|
|
#
|
|
|
|
# DocumentationVTK.cmake
|
|
|
|
#
|
|
|
|
# This file provides support for the VTK documentation framework. It
|
|
|
|
# relies on several tools (Doxygen, Perl, etc).
|
2001-10-26 19:22:09 +04:00
|
|
|
|
|
|
|
#
|
|
|
|
# Build the documentation ?
|
|
|
|
#
|
2012-08-13 21:47:32 +04:00
|
|
|
option(BUILD_DOCUMENTATION "Build the documentation (Doxygen)." OFF)
|
|
|
|
mark_as_advanced(BUILD_DOCUMENTATION)
|
2001-10-26 19:22:09 +04:00
|
|
|
|
2012-08-13 21:47:32 +04:00
|
|
|
if (BUILD_DOCUMENTATION)
|
2001-10-26 19:22:09 +04:00
|
|
|
|
|
|
|
#
|
|
|
|
# Check for the tools
|
|
|
|
#
|
2012-08-13 21:47:32 +04:00
|
|
|
find_package(UnixCommands)
|
|
|
|
find_package(Doxygen)
|
|
|
|
find_package(Gnuplot)
|
|
|
|
find_package(HTMLHelp)
|
|
|
|
find_package(Perl)
|
|
|
|
find_package(Wget)
|
|
|
|
|
|
|
|
option(DOCUMENTATION_HTML_HELP
|
2004-08-27 06:52:53 +04:00
|
|
|
"Build the HTML Help file (CHM)." OFF)
|
2001-10-26 19:22:09 +04:00
|
|
|
|
2012-08-13 21:47:32 +04:00
|
|
|
option(DOCUMENTATION_HTML_TARZ
|
2004-08-27 06:52:53 +04:00
|
|
|
"Build a compressed tar archive of the HTML doc." OFF)
|
2001-10-26 19:22:09 +04:00
|
|
|
|
2012-08-13 21:47:32 +04:00
|
|
|
mark_as_advanced(
|
2001-12-04 18:55:17 +03:00
|
|
|
DOCUMENTATION_HTML_HELP
|
|
|
|
DOCUMENTATION_HTML_TARZ
|
2004-08-27 06:52:53 +04:00
|
|
|
)
|
2001-12-04 18:55:17 +03:00
|
|
|
|
2012-08-13 21:42:58 +04:00
|
|
|
#
|
2001-10-26 19:22:09 +04:00
|
|
|
# The documentation process is controled by a batch file.
|
|
|
|
# We will probably need bash to create the custom target
|
|
|
|
#
|
|
|
|
|
2012-08-13 21:50:14 +04:00
|
|
|
endif ()
|