From 8b2ba50a629522b33ec69281ecf43fe5dc0dbedf Mon Sep 17 00:00:00 2001 From: Tomaz Canabrava Date: Tue, 7 Apr 2015 17:46:07 -0300 Subject: Add a FindLIBGIT2 based on our FindMarble. It currently searches for the .a (preferred) or the .so in the following directories, in order: ${CMAKE_CURRENT_SOURCE_DIR}/../libgit2, /usr/local, and /usr. Signed-off-by: Tomaz Canabrava Signed-off-by: Dirk Hohndel --- cmake/Modules/FindLIBGIT2.cmake | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 cmake/Modules/FindLIBGIT2.cmake diff --git a/cmake/Modules/FindLIBGIT2.cmake b/cmake/Modules/FindLIBGIT2.cmake new file mode 100644 index 000000000..2d13f0bff --- /dev/null +++ b/cmake/Modules/FindLIBGIT2.cmake @@ -0,0 +1,36 @@ +# - Try to find the LibGit2 Library +# Once done this will define +# +# LIBGIT2_FOUND - system has LibGit2 +# LIBGIT2_INCLUDE_DIR - the LibGit2 include directory +# LIBGIT2_LIBRARIES +# Redistribution and use is allowed according to the terms of the BSD license. +# For details see the accompanying COPYING-CMAKE-SCRIPTS file. +# + +# in cache already +IF ( LIBGIT2_INCLUDE_DIR AND LIBGIT2_LIBRARIES ) + SET( LIBGIT2_FIND_QUIETLY TRUE ) +ENDIF () + +FIND_PATH( LIBGIT2_INCLUDE_DIR +NAMES git2.h +HINTS + ${CMAKE_CURRENT_SOURCE_DIR}/../libgit2/include + /usr/local/include + /usr/include +) + +FIND_LIBRARY( LIBGIT2_LIBRARIES +NAMES + libgit2.a + git2 +HINTS + ${CMAKE_CURRENT_SOURCE_DIR}/../libgit2/build + /usr/local/include + /usr/include +) +SET(LIBGIT2_LIBRARIES ${LIBGIT2_LIBRARIES} -lssl -lcrypto) + +INCLUDE( FindPackageHandleStandardArgs ) +FIND_PACKAGE_HANDLE_STANDARD_ARGS( git2 DEFAULT_MSG LIBGIT2_INCLUDE_DIR LIBGIT2_LIBRARIES ) -- cgit v1.2.3-70-g09d2