diff options
Diffstat (limited to 'INSTALL.md')
-rw-r--r-- | INSTALL.md | 8 |
1 files changed, 5 insertions, 3 deletions
@@ -119,11 +119,13 @@ sudo ldconfig | |||
119 | 119 | ||
120 | ##### Compile toxcore | 120 | ##### Compile toxcore |
121 | 121 | ||
122 | Then clone this repo, run `cmake`, and install `toxcore` system-wide: | 122 | Then clone this repo, generate makefile, and install `toxcore` system-wide: |
123 | |||
123 | ```bash | 124 | ```bash |
124 | git clone https://github.com/TokTok/c-toxcore.git c-toxcore | 125 | git clone https://github.com/TokTok/c-toxcore.git c-toxcore |
125 | cd c-toxcore | 126 | cd c-toxcore |
126 | cmake . | 127 | autoreconf -i |
128 | ./configure | ||
127 | make | 129 | make |
128 | sudo make install | 130 | sudo make install |
129 | ``` | 131 | ``` |
@@ -461,7 +463,7 @@ cd .. | |||
461 | 463 | ||
462 | You can also use a precompiled win32 binary of libsodium, however you will have to place the files in places where they can be found, i.e., dll's go to /bin headers to /include and libraries to /lib directories in your MinGW shell. | 464 | You can also use a precompiled win32 binary of libsodium, however you will have to place the files in places where they can be found, i.e., dll's go to /bin headers to /include and libraries to /lib directories in your MinGW shell. |
463 | 465 | ||
464 | Next, install toxcore library, should either clone this repo by using git, or just download a [zip of current Master branch](https://github.com/TokTok/toxcore/archive/master.zip) and extract it somewhere. | 466 | Next, install toxcore library, should either clone this repo by using git, or just download a [zip of current Master branch](https://github.com/TokTok/c-toxcore/archive/master.zip) and extract it somewhere. |
465 | 467 | ||
466 | Assuming that you now have the sources in the toxcore directory: | 468 | Assuming that you now have the sources in the toxcore directory: |
467 | 469 | ||