Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
git2
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
git2
Commits
583cf169
Commit
583cf169
authored
Dec 04, 2010
by
Peter Drahoš
Committed by
Vicent Marti
Dec 12, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add optional CMake build script.
parent
2cd6d686
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
50 additions
and
0 deletions
+50
-0
CMakeLists.txt
+50
-0
No files found.
CMakeLists.txt
0 → 100644
View file @
583cf169
# CMake build script for the libgit2 project
# Theres nothing wrong with the original Waf build besides dependency on Python which I lack on some systems.
# Peter Drahos 2010
PROJECT
(
libgit2 C
)
CMAKE_MINIMUM_REQUIRED
(
VERSION 2.6
)
# Sane defaults
OPTION
(
BUILD_SHARED_LIBS
"Build Shared Library (OFF for Static)"
ON
)
OPTION
(
BUILD_TESTS
"Build Tests"
ON
)
IF
(
NOT CMAKE_BUILD_TYPE
)
SET
(
CMAKE_BUILD_TYPE
"Release"
CACHE STRING
"Choose the type of build, options are: Debug Release RelWithDebInfo MinSizeRel."
FORCE
)
ENDIF
()
# Find dependencies
FIND_PACKAGE
(
zlib REQUIRED
)
FIND_PACKAGE
(
OpenSSL REQUIRED
)
INCLUDE_DIRECTORIES
(
${
ZLIB_INCLUDE_DIR
}
${
OPENSSL_INCLUDE_DIR
}
src
)
# Collect sourcefiles
FILE
(
GLOB SRC src/*.c
)
FILE
(
GLOB SRC_GIT src/git/*.c
)
FILE
(
GLOB SRC_SHA src/block-sha1/*.c
)
FILE
(
GLOB SRC_PLAT src/unix/*.c
)
FILE
(
GLOB SRC_H src/git/*.h
)
# On Windows use specific platform sources
IF
(
WIN32
)
ADD_DEFINITIONS
(
WIN32 _DEBUG _LIB ZLIB_WINAPI
)
FILE
(
GLOB SRC_PLAT src/win32/*.c
)
ENDIF
()
# TODO. PPC Detection for optimized sha1.
# Compile and link libgit2
ADD_LIBRARY
(
git2
${
SRC
}
${
SRC_GIT
}
${
SRC_SHA
}
${
SRC_PLAT
}
)
TARGET_LINK_LIBRARIES
(
git2
${
ZLIB_LIBRARY
}
${
OPENSSL_CRYPTO_LIBRARIES
}
)
# Install
INSTALL
(
TARGETS git2
RUNTIME DESTINATION bin
LIBRARY DESTINATION lib
ARCHIVE DESTINATION lib
)
INSTALL
(
FILES
${
SRC_H
}
DESTINATION include/git
)
# Tests
IF
(
BUILD_TESTS
)
# TODO. The Waf build generates *.toc files for each test which complicates things.
ENDIF
()
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment