summaryrefslogtreecommitdiff
path: root/INSTALL.md
diff options
context:
space:
mode:
authorMaxim Biro <nurupo.contributions@gmail.com>2013-08-01 15:14:48 -0400
committerMaxim Biro <nurupo.contributions@gmail.com>2013-08-01 15:19:00 -0400
commit1c9f10d56319ae2f98d9b1044e5cf7bc8dd41667 (patch)
tree780a420fb8759f415408d03dcbeea751de373553 /INSTALL.md
parent75daa1aec9c908205ebc8e085b4c5cdb048b6017 (diff)
Some clarifications
Diffstat (limited to 'INSTALL.md')
-rw-r--r--INSTALL.md6
1 files changed, 5 insertions, 1 deletions
diff --git a/INSTALL.md b/INSTALL.md
index a0c4165d..016cb82f 100644
--- a/INSTALL.md
+++ b/INSTALL.md
@@ -32,11 +32,14 @@ sudo checkinstall --install --pkgname libsodium --pkgversion 0.4.2 --nodoc
32sudo ldconfig 32sudo ldconfig
33``` 33```
34 34
35Then clone this repo and run: 35Then clone this repo and generate makefile:
36```bash 36```bash
37git clone git://github.com/irungentoo/ProjectTox-Core.git
38cd ProjectTox-Core
37mkdir build && cd build 39mkdir build && cd build
38cmake .. 40cmake ..
39``` 41```
42Note that you should call cmake on the root [`CMakeLists.txt`](/CMakeLists.txt) file only.
40 43
41Then you can build any of the [`/testing`](/testing) and [`/other`](/other) that are currently supported on your platform by running: 44Then you can build any of the [`/testing`](/testing) and [`/other`](/other) that are currently supported on your platform by running:
42```bash 45```bash
@@ -102,6 +105,7 @@ Navigate in `cmd` to this repo and run:
102mkdir build && cd build 105mkdir build && cd build
103cmake -G "MinGW Makefiles" .. 106cmake -G "MinGW Makefiles" ..
104``` 107```
108Note that you should call cmake on the root [`CMakeLists.txt`](/CMakeLists.txt) file only.
105 109
106Then you can build any of the [`/testing`](/testing) and [`/other`](/other) that are currently supported on your platform by running: 110Then you can build any of the [`/testing`](/testing) and [`/other`](/other) that are currently supported on your platform by running:
107```cmd 111```cmd