2016-09-27 15:01:08 -04:00
|
|
|
# Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
|
|
|
# file Copyright.txt or https://cmake.org/licensing for details.
|
|
|
|
|
2018-10-22 10:31:08 -04:00
|
|
|
#[=======================================================================[.rst:
|
|
|
|
Documentation
|
|
|
|
-------------
|
|
|
|
|
2018-11-12 14:27:41 +01:00
|
|
|
This module provides support for the VTK documentation framework. It
|
2018-10-22 10:31:08 -04:00
|
|
|
relies on several tools (Doxygen, Perl, etc).
|
|
|
|
#]=======================================================================]
|
2001-10-26 11:22:09 -04:00
|
|
|
|
|
|
|
#
|
|
|
|
# Build the documentation ?
|
|
|
|
#
|
2012-08-13 13:47:32 -04:00
|
|
|
option(BUILD_DOCUMENTATION "Build the documentation (Doxygen)." OFF)
|
|
|
|
mark_as_advanced(BUILD_DOCUMENTATION)
|
2001-10-26 11:22:09 -04:00
|
|
|
|
2012-08-13 13:47:32 -04:00
|
|
|
if (BUILD_DOCUMENTATION)
|
2001-10-26 11:22:09 -04:00
|
|
|
|
|
|
|
#
|
|
|
|
# Check for the tools
|
|
|
|
#
|
2012-08-13 13: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-26 22:52:53 -04:00
|
|
|
"Build the HTML Help file (CHM)." OFF)
|
2001-10-26 11:22:09 -04:00
|
|
|
|
2012-08-13 13:47:32 -04:00
|
|
|
option(DOCUMENTATION_HTML_TARZ
|
2004-08-26 22:52:53 -04:00
|
|
|
"Build a compressed tar archive of the HTML doc." OFF)
|
2001-10-26 11:22:09 -04:00
|
|
|
|
2012-08-13 13:47:32 -04:00
|
|
|
mark_as_advanced(
|
2001-12-04 10:55:17 -05:00
|
|
|
DOCUMENTATION_HTML_HELP
|
|
|
|
DOCUMENTATION_HTML_TARZ
|
2004-08-26 22:52:53 -04:00
|
|
|
)
|
2001-12-04 10:55:17 -05:00
|
|
|
|
2012-08-13 13:42:58 -04:00
|
|
|
#
|
2017-11-02 19:14:55 -04:00
|
|
|
# The documentation process is controlled by a batch file.
|
2001-10-26 11:22:09 -04:00
|
|
|
# We will probably need bash to create the custom target
|
|
|
|
#
|
|
|
|
|
2012-08-13 13:50:14 -04:00
|
|
|
endif ()
|