Skip to content

Commit

Permalink
libgit2: upgraded to version 0.28.5 (#2346).
Browse files Browse the repository at this point in the history
  • Loading branch information
agarny committed May 31, 2020
1 parent 1f1da79 commit b3a2225
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/plugins/thirdParty/libgit2/CMakeLists.txt
Expand Up @@ -3,21 +3,21 @@ project(libgit2Plugin)
# Name and version of our package

set(PACKAGE_NAME libgit2)
set(PACKAGE_VERSION 1.0.0)
set(PACKAGE_VERSION 0.28.5)

# Version of our library

set(MAJOR_LIBRARY_VERSION 1)
set(MINOR_LIBRARY_VERSION 0)
set(LIBRARY_VERSION ${MAJOR_LIBRARY_VERSION}.${MINOR_LIBRARY_VERSION}.0)
set(MAJOR_LIBRARY_VERSION 0)
set(MINOR_LIBRARY_VERSION 28)
set(LIBRARY_VERSION ${MAJOR_LIBRARY_VERSION}.${MINOR_LIBRARY_VERSION}.5)

# Git tag for our library

set(GIT_TAG v1.0.0-opencor)
set(GIT_TAG v0.28.5-opencor)

# Release tag

set(RELEASE_TAG v1.0.0-opencor)
set(RELEASE_TAG v0.28.5-opencor)

# Specify where our local package will be installed

Expand All @@ -33,7 +33,7 @@ elseif(APPLE)
set(SHARED_LIBRARY ${CMAKE_SHARED_LIBRARY_PREFIX}git2.${MINOR_LIBRARY_VERSION}${CMAKE_SHARED_LIBRARY_SUFFIX})
set(IMPORT_LIBRARY ${SHARED_LIBRARY})
else()
set(SHARED_LIBRARY ${CMAKE_SHARED_LIBRARY_PREFIX}git2${CMAKE_SHARED_LIBRARY_SUFFIX}.${MAJOR_LIBRARY_VERSION}.${MINOR_LIBRARY_VERSION})
set(SHARED_LIBRARY ${CMAKE_SHARED_LIBRARY_PREFIX}git2${CMAKE_SHARED_LIBRARY_SUFFIX}.${MINOR_LIBRARY_VERSION})
set(IMPORT_LIBRARY ${SHARED_LIBRARY})
endif()

Expand Down

0 comments on commit b3a2225

Please sign in to comment.