summaryrefslogtreecommitdiff
path: root/INSTALL.md
diff options
context:
space:
mode:
authoriphydf <iphydf@users.noreply.github.com>2018-02-05 21:38:58 +0000
committeriphydf <iphydf@users.noreply.github.com>2018-02-09 20:51:39 +0000
commit6cd4fcdec4e6671e63e8c7cba2ab4c6d594b13fd (patch)
tree09485be8361d503f1acdee57055535a6b3331d17 /INSTALL.md
parent05912fd65c52f97a600383be11cd741ae32d61bf (diff)
Remove libcheck from the dependencies.
We're not gaining much from this library, and it's a burden, especially for windows development.
Diffstat (limited to 'INSTALL.md')
-rw-r--r--INSTALL.md2
1 files changed, 0 insertions, 2 deletions
diff --git a/INSTALL.md b/INSTALL.md
index 02eaf7f4..dc46ea61 100644
--- a/INSTALL.md
+++ b/INSTALL.md
@@ -181,7 +181,6 @@ Build the container image based on the Dockerfile. The following options are ava
181| SUPPORT_ARCH_i686 | Support building 32-bit toxcore. | "true" or "false" (case sensitive). | true | 181| SUPPORT_ARCH_i686 | Support building 32-bit toxcore. | "true" or "false" (case sensitive). | true |
182| SUPPORT_ARCH_x86_64 | Support building 64-bit toxcore. | "true" or "false" (case sensitive). | true | 182| SUPPORT_ARCH_x86_64 | Support building 64-bit toxcore. | "true" or "false" (case sensitive). | true |
183| SUPPORT_TEST | Support running toxcore automated tests. | "true" or "false" (case sensitive). | false | 183| SUPPORT_TEST | Support running toxcore automated tests. | "true" or "false" (case sensitive). | false |
184| VERSION_CHECK | Version of libcheck. Needed only when SUPPORT_TEST is enabled. | Git branch name. | 0.12.0 |
185| VERSION_OPUS | Version of libopus to build toxcore with. | Git branch name. | v1.2.1 | 184| VERSION_OPUS | Version of libopus to build toxcore with. | Git branch name. | v1.2.1 |
186| VERSION_SODIUM | Version of libsodium to build toxcore with. | Git branch name. | 1.0.16 | 185| VERSION_SODIUM | Version of libsodium to build toxcore with. | Git branch name. | 1.0.16 |
187| VERSION_VPX | Version of libvpx to build toxcore with. | Git branch name. | v1.6.1 | 186| VERSION_VPX | Version of libvpx to build toxcore with. | Git branch name. | v1.6.1 |
@@ -192,7 +191,6 @@ Example of building a container image with options
192cd other/docker/windows 191cd other/docker/windows
193docker build \ 192docker build \
194 --build-arg SUPPORT_TEST=true \ 193 --build-arg SUPPORT_TEST=true \
195 --build-arg VERSION_CHECK=0.11.0 \
196 -t toxcore \ 194 -t toxcore \
197 . 195 .
198``` 196```