FindGit.cmake 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. #.rst:
  2. # FindGit
  3. # -------
  4. #
  5. # The module defines the following variables:
  6. #
  7. # ``GIT_EXECUTABLE``
  8. # Path to Git command-line client.
  9. # ``Git_FOUND``, ``GIT_FOUND``
  10. # True if the Git command-line client was found.
  11. # ``GIT_VERSION_STRING``
  12. # The version of Git found.
  13. #
  14. # Example usage:
  15. #
  16. # .. code-block:: cmake
  17. #
  18. # find_package(Git)
  19. # if(Git_FOUND)
  20. # message("Git found: ${GIT_EXECUTABLE}")
  21. # endif()
  22. #=============================================================================
  23. # Copyright 2010-2016 Kitware, Inc.
  24. # Copyright 2012 Rolf Eike Beer <eike@sf-mail.de>
  25. #
  26. # Distributed under the OSI-approved BSD License (the "License");
  27. # see accompanying file Copyright.txt for details.
  28. #
  29. # This software is distributed WITHOUT ANY WARRANTY; without even the
  30. # implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  31. # See the License for more information.
  32. #=============================================================================
  33. # (To distribute this file outside of CMake, substitute the full
  34. # License text for the above reference.)
  35. # Look for 'git' or 'eg' (easy git)
  36. #
  37. set(git_names git eg)
  38. # Prefer .cmd variants on Windows unless running in a Makefile
  39. # in the MSYS shell.
  40. #
  41. if(WIN32)
  42. if(NOT CMAKE_GENERATOR MATCHES "MSYS")
  43. set(git_names git.cmd git eg.cmd eg)
  44. # GitHub search path for Windows
  45. file(GLOB github_path
  46. "$ENV{LOCALAPPDATA}/Github/PortableGit*/cmd"
  47. "$ENV{LOCALAPPDATA}/Github/PortableGit*/bin"
  48. )
  49. # SourceTree search path for Windows
  50. set(_git_sourcetree_path "$ENV{LOCALAPPDATA}/Atlassian/SourceTree/git_local/bin")
  51. endif()
  52. endif()
  53. find_program(GIT_EXECUTABLE
  54. NAMES ${git_names}
  55. PATHS ${github_path} ${_git_sourcetree_path}
  56. PATH_SUFFIXES Git/cmd Git/bin
  57. DOC "Git command line client"
  58. )
  59. mark_as_advanced(GIT_EXECUTABLE)
  60. unset(git_names)
  61. unset(_git_sourcetree_path)
  62. if(GIT_EXECUTABLE)
  63. execute_process(COMMAND ${GIT_EXECUTABLE} --version
  64. OUTPUT_VARIABLE git_version
  65. ERROR_QUIET
  66. OUTPUT_STRIP_TRAILING_WHITESPACE)
  67. if (git_version MATCHES "^git version [0-9]")
  68. string(REPLACE "git version " "" GIT_VERSION_STRING "${git_version}")
  69. endif()
  70. unset(git_version)
  71. endif()
  72. # Handle the QUIETLY and REQUIRED arguments and set Git_FOUND to TRUE if
  73. # all listed variables are TRUE
  74. include(${CMAKE_CURRENT_LIST_DIR}/FindPackageHandleStandardArgs.cmake)
  75. find_package_handle_standard_args(Git
  76. REQUIRED_VARS GIT_EXECUTABLE
  77. VERSION_VAR GIT_VERSION_STRING)