diff options
Diffstat (limited to 'INSTALL.md')
-rw-r--r-- | INSTALL.md | 11 |
1 files changed, 5 insertions, 6 deletions
@@ -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 | |||
32 | sudo ldconfig | 31 | sudo ldconfig |
33 | ``` | 32 | ``` |
34 | 33 | ||
35 | Then clone this repo and run: | 34 | Then clone this repo and generate makefile: |
36 | ```bash | 35 | ```bash |
36 | git clone git://github.com/irungentoo/ProjectTox-Core.git | ||
37 | cd ProjectTox-Core | ||
37 | mkdir build && cd build | 38 | mkdir build && cd build |
38 | cmake .. | 39 | cmake .. |
39 | ``` | 40 | ``` |
41 | Note that you should call cmake on the root [`CMakeLists.txt`](/CMakeLists.txt) file only. | ||
40 | 42 | ||
41 | Then you can build any of the [`/testing`](/testing) and [`/other`](/other) that are currently supported on your platform by running: | 43 | Then 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: | |||
102 | mkdir build && cd build | 104 | mkdir build && cd build |
103 | cmake -G "MinGW Makefiles" .. | 105 | cmake -G "MinGW Makefiles" .. |
104 | ``` | 106 | ``` |
107 | Note that you should call cmake on the root [`CMakeLists.txt`](/CMakeLists.txt) file only. | ||
105 | 108 | ||
106 | Then you can build any of the [`/testing`](/testing) and [`/other`](/other) that are currently supported on your platform by running: | 109 | Then 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 | |||
117 | mingw32-make | 120 | mingw32-make |
118 | ``` | 121 | ``` |
119 | 122 | ||
120 | <a name="usage" /> | ||
121 | ## Usage | ||
122 | |||
123 | - [Start Guide](start_guide.md) | ||