summaryrefslogtreecommitdiff
path: root/INSTALL.md
diff options
context:
space:
mode:
Diffstat (limited to 'INSTALL.md')
-rw-r--r--INSTALL.md11
1 files changed, 5 insertions, 6 deletions
diff --git a/INSTALL.md b/INSTALL.md
index a0c4165d..87451948 100644
--- a/INSTALL.md
+++ b/INSTALL.md
@@ -6,7 +6,6 @@
6 - [Homebrew](#homebrew) 6 - [Homebrew](#homebrew)
7 - [Non-Homebrew](#non-homebrew) 7 - [Non-Homebrew](#non-homebrew)
8 - [Windows](#windows) 8 - [Windows](#windows)
9- [Usage](#usage)
10 9
11<a name="installation" /> 10<a name="installation" />
12##Installation 11##Installation
@@ -32,11 +31,14 @@ sudo checkinstall --install --pkgname libsodium --pkgversion 0.4.2 --nodoc
32sudo ldconfig 31sudo ldconfig
33``` 32```
34 33
35Then clone this repo and run: 34Then clone this repo and generate makefile:
36```bash 35```bash
36git clone git://github.com/irungentoo/ProjectTox-Core.git
37cd ProjectTox-Core
37mkdir build && cd build 38mkdir build && cd build
38cmake .. 39cmake ..
39``` 40```
41Note that you should call cmake on the root [`CMakeLists.txt`](/CMakeLists.txt) file only.
40 42
41Then you can build any of the [`/testing`](/testing) and [`/other`](/other) that are currently supported on your platform by running: 43Then you can build any of the [`/testing`](/testing) and [`/other`](/other) that are currently supported on your platform by running:
42```bash 44```bash
@@ -102,6 +104,7 @@ Navigate in `cmd` to this repo and run:
102mkdir build && cd build 104mkdir build && cd build
103cmake -G "MinGW Makefiles" .. 105cmake -G "MinGW Makefiles" ..
104``` 106```
107Note that you should call cmake on the root [`CMakeLists.txt`](/CMakeLists.txt) file only.
105 108
106Then you can build any of the [`/testing`](/testing) and [`/other`](/other) that are currently supported on your platform by running: 109Then you can build any of the [`/testing`](/testing) and [`/other`](/other) that are currently supported on your platform by running:
107```cmd 110```cmd
@@ -117,7 +120,3 @@ Or you could just build everything that is supported on your platform by running
117mingw32-make 120mingw32-make
118``` 121```
119 122
120<a name="usage" />
121## Usage
122
123- [Start Guide](start_guide.md)