summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorABrambleNinja <a.redacted.email@gmail.com>2013-08-15 04:07:43 +0000
committerABrambleNinja <a.redacted.email@gmail.com>2013-08-15 04:07:43 +0000
commit36dfea3b5ede67bb824029c8e9bcad764a4b9ef8 (patch)
tree980cadb2cb7141d72225c70e37ed3f437249040c
parentbf6c04b2cafe0a132aa54c6134217a0f4369a054 (diff)
For me, installing check wasn't enough. check-devel was required (Fedora 19)
-rw-r--r--INSTALL.md10
1 files changed, 5 insertions, 5 deletions
diff --git a/INSTALL.md b/INSTALL.md
index 1ee1c66f..3d01d562 100644
--- a/INSTALL.md
+++ b/INSTALL.md
@@ -23,7 +23,7 @@ On Fedora:
23 23
24```bash 24```bash
25yum groupinstall "Development Tools" 25yum groupinstall "Development Tools"
26yum install libtool autoconf automake libconfig-devel ncurses-devel cmake check 26yum install libtool autoconf automake libconfig-devel ncurses-devel cmake check check-devel
27``` 27```
28 28
29Note that `libconfig-dev` should be >= 1.4. 29Note that `libconfig-dev` should be >= 1.4.
@@ -61,8 +61,8 @@ mkdir build && cd build
61cmake .. 61cmake ..
62``` 62```
63Advance cmake options: 63Advance cmake options:
64 - `-DSHARED_TOXCORE=ON` (default `OFF`) Build Core as a shared library. 64 - `-DSHARED_TOXCORE=ON` (default `OFF`) � Build Core as a shared library.
65 - `-DUSE_NACL=ON` (default `OFF`) Use NaCl library instead of libsodium. 65 - `-DUSE_NACL=ON` (default `OFF`) � Use NaCl library instead of libsodium.
66 66
67Note that you should call cmake on the root [`CMakeLists.txt`](/CMakeLists.txt) file only. 67Note that you should call cmake on the root [`CMakeLists.txt`](/CMakeLists.txt) file only.
68 68
@@ -150,8 +150,8 @@ mkdir build && cd build
150cmake -G "MinGW Makefiles" .. 150cmake -G "MinGW Makefiles" ..
151``` 151```
152Advance cmake options: 152Advance cmake options:
153 - `-DSHARED_TOXCORE=ON` (default OFF) Build Core as a shared library. 153 - `-DSHARED_TOXCORE=ON` (default OFF) � Build Core as a shared library.
154 - `-DSHARED_LIBSODIUM=ON` (default OFF) Link libsodium as a shared library. 154 - `-DSHARED_LIBSODIUM=ON` (default OFF) � Link libsodium as a shared library.
155 155
156Note that you should call cmake on the root [`CMakeLists.txt`](/CMakeLists.txt) file only. 156Note that you should call cmake on the root [`CMakeLists.txt`](/CMakeLists.txt) file only.
157 157