summaryrefslogtreecommitdiff
path: root/Modules/Documentation.cmake
diff options
context:
space:
mode:
authorAndy Cedilnik <andy.cedilnik@kitware.com>2004-09-27 09:49:55 -0400
committerAndy Cedilnik <andy.cedilnik@kitware.com>2004-09-27 09:49:55 -0400
commit0871ddbeddeee7f1884fc3801192547555f4f66b (patch)
tree207528b85dfc46e48faa814802b704e2a6369f97 /Modules/Documentation.cmake
parentdfd275b8f99b52418b5a3bf078b0210e36adab66 (diff)
downloadcmake-0871ddbeddeee7f1884fc3801192547555f4f66b.tar.gz
ENH: Replace INCLUDE(Find...) with FIND_PACKAGE(...)
Diffstat (limited to 'Modules/Documentation.cmake')
-rw-r--r--Modules/Documentation.cmake12
1 files changed, 6 insertions, 6 deletions
diff --git a/Modules/Documentation.cmake b/Modules/Documentation.cmake
index 21d52d8649..a098203193 100644
--- a/Modules/Documentation.cmake
+++ b/Modules/Documentation.cmake
@@ -14,12 +14,12 @@ IF (BUILD_DOCUMENTATION)
#
# Check for the tools
#
- INCLUDE(FindUnixCommands)
- INCLUDE(FindDoxygen)
- INCLUDE(FindGnuplot)
- INCLUDE(FindHTMLHelp)
- INCLUDE(FindPerl)
- INCLUDE(FindWget)
+ FIND_PACKAGE(UnixCommands)
+ FIND_PACKAGE(Doxygen)
+ FIND_PACKAGE(Gnuplot)
+ FIND_PACKAGE(HTMLHelp)
+ FIND_PACKAGE(Perl)
+ FIND_PACKAGE(Wget)
OPTION(DOCUMENTATION_HTML_HELP
"Build the HTML Help file (CHM)." OFF)