Documentation.cmake 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. #.rst:
  2. # Documentation
  3. # -------------
  4. #
  5. # DocumentationVTK.cmake
  6. #
  7. # This file provides support for the VTK documentation framework. It
  8. # relies on several tools (Doxygen, Perl, etc).
  9. #=============================================================================
  10. # Copyright 2001-2009 Kitware, Inc.
  11. #
  12. # Distributed under the OSI-approved BSD License (the "License");
  13. # see accompanying file Copyright.txt for details.
  14. #
  15. # This software is distributed WITHOUT ANY WARRANTY; without even the
  16. # implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  17. # See the License for more information.
  18. #=============================================================================
  19. # (To distribute this file outside of CMake, substitute the full
  20. # License text for the above reference.)
  21. #
  22. # Build the documentation ?
  23. #
  24. option(BUILD_DOCUMENTATION "Build the documentation (Doxygen)." OFF)
  25. mark_as_advanced(BUILD_DOCUMENTATION)
  26. if (BUILD_DOCUMENTATION)
  27. #
  28. # Check for the tools
  29. #
  30. find_package(UnixCommands)
  31. find_package(Doxygen)
  32. find_package(Gnuplot)
  33. find_package(HTMLHelp)
  34. find_package(Perl)
  35. find_package(Wget)
  36. option(DOCUMENTATION_HTML_HELP
  37. "Build the HTML Help file (CHM)." OFF)
  38. option(DOCUMENTATION_HTML_TARZ
  39. "Build a compressed tar archive of the HTML doc." OFF)
  40. mark_as_advanced(
  41. DOCUMENTATION_HTML_HELP
  42. DOCUMENTATION_HTML_TARZ
  43. )
  44. #
  45. # The documentation process is controled by a batch file.
  46. # We will probably need bash to create the custom target
  47. #
  48. endif ()