From 3a1918eb2fe024918837a71f56815a4319a96328 Mon Sep 17 00:00:00 2001 From: Benjamin Sergeant Date: Mon, 10 Jun 2019 13:26:41 -0700 Subject: [PATCH] Add -DUSE_VENDORED_THIRD_PARTY=1 to build ws --- makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/makefile b/makefile index a32e9ad1..30b3a299 100644 --- a/makefile +++ b/makefile @@ -12,7 +12,7 @@ brew: mkdir -p build && (cd build ; cmake -DUSE_TLS=1 -DUSE_WS=1 .. ; make -j install) ws: - mkdir -p build && (cd build ; cmake -DUSE_TLS=1 -DUSE_WS=1 -DUSE_MBED_TLS=1 .. ; make -j) + mkdir -p build && (cd build ; cmake -DUSE_TLS=1 -DUSE_WS=1 -DUSE_MBED_TLS=1 -DUSE_VENDORED_THIRD_PARTY=1 .. ; make -j) uninstall: xargs rm -fv < build/install_manifest.txt