Skip to content

Commit

Permalink
update build instructions in readme.md
Browse files Browse the repository at this point in the history
  • Loading branch information
JamesMcCrae committed Jul 3, 2019
1 parent c2d6a5c commit 89b2128
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,14 @@ Janus Presence Server, C++ implementation

Build with Qt 5. Requires linking with the QtNetwork module (included in a typical Qt SDK install).

On Windows/Linux where Qt Creator is installed: open the project file (janus-server-c.pro) and start a release build. A janus-server-c executable will be built.
On Windows/Linux where Qt Creator is installed: open the project file (janus-server-c.pro) and start a release build. On Linux where no GUI is available (assumes Qt5 SDK is installed):

> qmake -makefile
> make
and a `janus-server-c` binary will be created. Run with:

> ./janus-server-c
### General Features

Expand All @@ -23,7 +30,7 @@ You can test that the server is up by using telnet.

> telnet localhost 5566
Copy and paste the examples below to see how it works
Copy and paste the examples below to see how it works (which also serve as protocol documentation):

=================================
### 1. Client -> Server Methods:
Expand Down Expand Up @@ -356,4 +363,4 @@ When a user disconnects:

```json
{"method":"user_disconnected","data":{"userId":"LL"}}
```
```

0 comments on commit 89b2128

Please sign in to comment.