diff options
author | Peter Drahoš <drahosp@gmail.com> | 2010-12-04 17:41:04 +0100 |
---|---|---|
committer | Vicent Marti <tanoku@gmail.com> | 2010-12-12 00:19:56 +0200 |
commit | ec821ca6e434547c46e4dc66c534b78f79535b08 (patch) | |
tree | 17ba0c2d1cab6920b4a7cc7af5adc642de5f570b /README.md | |
parent | 583cf1696abc5d9f15dbe2f89ca6ba3dc0a4b182 (diff) | |
download | libgit2-ec821ca6e434547c46e4dc66c534b78f79535b08.tar.gz |
Update README.md
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 20 |
1 files changed, 20 insertions, 0 deletions
@@ -35,6 +35,26 @@ libgit2 is already very usable. * tree traversal * basic index file (staging area) operations +Building libgit2 - Using CMake +============================== + +When building using CMake the following dependencies are required: + +* CMake 2.6+ <http://www.cmake.org> + +Probably already installed in your system are: + +* zlib 1.2+ <http://www.zlib.net/> + +* LibSSL <http://www.openssl.org/> + +Generate makefile or IDE workspace specific to your system using CMake by pointing the CMakeGui to the CMakeLists.txt file. + +Optionally, you can build from commandline on most UNIX systems using: + + $ ccmake . + $ make install + Building libgit2 - Unix systems ================================== |