summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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