summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorPeter Drahoš <drahosp@gmail.com>2010-12-05 18:25:48 +0100
committerVicent Marti <tanoku@gmail.com>2010-12-12 00:20:17 +0200
commit73c46d539fae5a54bb557428ccebb7c317f23399 (patch)
tree67141375ad5342900412436ffe619f82c07efeb2 /README.md
parent7cbdaf7ffa9a581ccf83d9d6d05c05b203de03ae (diff)
downloadlibgit2-73c46d539fae5a54bb557428ccebb7c317f23399.tar.gz
Add basic testing support and options to specify install paths
Diffstat (limited to 'README.md')
-rw-r--r--README.md13
1 files changed, 8 insertions, 5 deletions
diff --git a/README.md b/README.md
index c8c09cd49..820e92833 100644
--- a/README.md
+++ b/README.md
@@ -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
==================================