diff options
Diffstat (limited to 'Modules/FindHg.cmake')
-rw-r--r-- | Modules/FindHg.cmake | 27 |
1 files changed, 20 insertions, 7 deletions
diff --git a/Modules/FindHg.cmake b/Modules/FindHg.cmake index a6a4aef..a1fb33f 100644 --- a/Modules/FindHg.cmake +++ b/Modules/FindHg.cmake @@ -1,12 +1,25 @@ +#.rst: +# FindHg +# ------ +# +# +# # The module defines the following variables: -# HG_EXECUTABLE - path to mercurial command line client (hg) -# HG_FOUND - true if the command line client was found -# HG_VERSION_STRING - the version of mercurial found +# +# :: +# +# HG_EXECUTABLE - path to mercurial command line client (hg) +# HG_FOUND - true if the command line client was found +# HG_VERSION_STRING - the version of mercurial found +# # Example usage: -# find_package(Hg) -# if(HG_FOUND) -# message("hg found: ${HG_EXECUTABLE}") -# endif() +# +# :: +# +# find_package(Hg) +# if(HG_FOUND) +# message("hg found: ${HG_EXECUTABLE}") +# endif() #============================================================================= # Copyright 2010-2012 Kitware, Inc. |