summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--INSTALL.md8
1 files changed, 8 insertions, 0 deletions
diff --git a/INSTALL.md b/INSTALL.md
index 483928b0..8c7147fa 100644
--- a/INSTALL.md
+++ b/INSTALL.md
@@ -60,6 +60,10 @@ cd ProjectTox-Core
60mkdir build && cd build 60mkdir build && cd build
61cmake .. 61cmake ..
62``` 62```
63Advance cmake options:
64 - `-DSHARED_TOXCORE=ON` (default `OFF`) — Build Core as a shared library.
65 - `-DUSE_NACL=ON` (default `OFF`) — Use NaCl library instead of libsodium.
66
63Note 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.
64 68
65Then you can build any of the [`/testing`](/testing) and [`/other`](/other) that are currently supported on your platform by running: 69Then you can build any of the [`/testing`](/testing) and [`/other`](/other) that are currently supported on your platform by running:
@@ -143,6 +147,10 @@ Navigate in `cmd` to this repo and run:
143mkdir build && cd build 147mkdir build && cd build
144cmake -G "MinGW Makefiles" .. 148cmake -G "MinGW Makefiles" ..
145``` 149```
150Advance cmake options:
151 - `-DSHARED_TOXCORE=ON` (default OFF) — Build Core as a shared library.
152 - `-DSHARED_LIBSODIUM=ON` (default OFF) — Link libsodium as a shared library.
153
146Note that you should call cmake on the root [`CMakeLists.txt`](/CMakeLists.txt) file only. 154Note that you should call cmake on the root [`CMakeLists.txt`](/CMakeLists.txt) file only.
147 155
148Then you can build any of the [`/testing`](/testing) and [`/other`](/other) that are currently supported on your platform by running: 156Then you can build any of the [`/testing`](/testing) and [`/other`](/other) that are currently supported on your platform by running: