add a target for building wihout ssl + take Matt Boer updated script to run ws test with SSL (still broken for large payload)

This commit is contained in:
Benjamin Sergeant
2019-10-03 07:47:34 -07:00
parent 19150115bb
commit adcbf0d208
2 changed files with 38 additions and 16 deletions

View File

@ -20,6 +20,9 @@ ws_openssl:
ws_mbedtls:
mkdir -p build && (cd build ; cmake -DCMAKE_BUILD_TYPE=Debug -DUSE_TLS=1 -DUSE_WS=1 -DUSE_MBED_TLS=1 .. ; make -j 4)
ws_no_ssl:
mkdir -p build && (cd build ; cmake -DCMAKE_BUILD_TYPE=Debug -DUSE_WS=1 .. ; make -j 4)
uninstall:
xargs rm -fv < build/install_manifest.txt