diff options
author | Peter Drahoš <drahosp@gmail.com> | 2010-12-05 18:25:48 +0100 |
---|---|---|
committer | Vicent Marti <tanoku@gmail.com> | 2010-12-12 00:20:17 +0200 |
commit | 73c46d539fae5a54bb557428ccebb7c317f23399 (patch) | |
tree | 67141375ad5342900412436ffe619f82c07efeb2 /README.md | |
parent | 7cbdaf7ffa9a581ccf83d9d6d05c05b203de03ae (diff) | |
download | libgit2-73c46d539fae5a54bb557428ccebb7c317f23399.tar.gz |
Add basic testing support and options to specify install paths
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 13 |
1 files changed, 8 insertions, 5 deletions
@@ -42,19 +42,22 @@ When building using CMake the following dependencies are required: * CMake 2.6+ <http://www.cmake.org> -Probably already installed in your system are: +Required dependency: * zlib 1.2+ <http://www.zlib.net/> -* LibSSL <http://www.openssl.org/> +Optional dependency: -Generate makefile or IDE workspace specific to your system using CMake by pointing the CMakeGui to the CMakeLists.txt file. +* LibSSL <http://www.openssl.org/> -Optionally, you can build from commandline on most UNIX systems using: +On most Unix systems you can build the library using the following commands - $ ccmake . + $ mkdir build && cd build + $ cmake .. $ make install +Alternatively you can point the CMake GUI tool to the CMakeLists.txt file and generate platform specific build project or IDE workspace. + Building libgit2 - Unix systems ================================== |