Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/marian-nmt/Simple-WebSocket-Server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOle Christian Eidheim <eidheim@gmail.com>2015-01-30 19:31:40 +0300
committerOle Christian Eidheim <eidheim@gmail.com>2015-01-30 19:31:40 +0300
commitb2001dd212b290e36a4dfd121d5b45aa38be1080 (patch)
tree39b038885bcf45fb423729d57063e31a0c4b037c /README.md
parent6de4d6a5e7a08ec22e99f06d5ab3fd3ce593f775 (diff)
Update README.md
Diffstat (limited to 'README.md')
-rw-r--r--README.md14
1 files changed, 12 insertions, 2 deletions
diff --git a/README.md b/README.md
index 3228efe..da252c0 100644
--- a/README.md
+++ b/README.md
@@ -36,7 +36,12 @@ On Linux using g++: add `-pthread`
#### WS
-Use CMake and make, or:
+```
+cmake .
+make
+```
+
+or
`g++ -O3 -std=c++1y ws_examples.cpp -lboost_system -lcrypto -o ws_examples`
@@ -44,7 +49,12 @@ Then to run the server and client examples: `./ws_examples`
#### WSS
-Use CMake and make, or:
+```
+cmake .
+make
+```
+
+or
`g++ -O3 -std=c++1y wss_examples.cpp -lboost_system -lssl -lcrypto -o wss_examples`