diff options
author | Brad King <brad.king@kitware.com> | 2016-01-27 14:23:48 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2016-01-27 14:26:27 (GMT) |
commit | fa78ee97ff30cc066a620cacdfe4144852947dc4 (patch) | |
tree | 26b88e56cc6b8ed7a7b24b3e64ed563a7a0585bd | |
parent | facfb52c9fe36c172c4aa21b40c5886efa28e0ae (diff) | |
download | CMake-fa78ee97ff30cc066a620cacdfe4144852947dc4.zip CMake-fa78ee97ff30cc066a620cacdfe4144852947dc4.tar.gz CMake-fa78ee97ff30cc066a620cacdfe4144852947dc4.tar.bz2 |
FindGit: Improve documentation formatting
-rw-r--r-- | Modules/FindGit.cmake | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/Modules/FindGit.cmake b/Modules/FindGit.cmake index 363ab87..d18f965 100644 --- a/Modules/FindGit.cmake +++ b/Modules/FindGit.cmake @@ -2,19 +2,18 @@ # FindGit # ------- # -# -# # The module defines the following variables: # -# :: -# -# GIT_EXECUTABLE - path to Git command line client -# Git_FOUND / GIT_FOUND - true if the Git command line client was found -# GIT_VERSION_STRING - the version of Git found +# ``GIT_EXECUTABLE`` +# Path to Git command-line client. +# ``Git_FOUND``, ``GIT_FOUND`` +# True if the Git command-line client was found. +# ``GIT_VERSION_STRING`` +# The version of Git found. # # Example usage: # -# :: +# .. code-block:: cmake # # find_package(Git) # if(Git_FOUND) |