Skip to content

Commit b25ba10

Browse files
committed
Add client build.
1 parent 9521a51 commit b25ba10

File tree

1 file changed

+14
-1
lines changed

1 file changed

+14
-1
lines changed

README.md

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,8 @@ See the example project in the `example` folder and `example/MainScene.gd` for h
8888
## Build: Server
8989
**Requirements:**
9090

91-
The server uses SQLite to store data. In order to build the server you need to have `sqlite3` installed.
91+
To build the server you will need [Rust](https://www.rust-lang.org/tools/install).
92+
The server uses SQLite to store data. In order to build the server you also need have `sqlite3` installed.
9293

9394
For Windows users we have a built version of `sqlite3` in `server/sqlite3-windows`. In order to use it, create an environment variable with the name `SQLITE3_LIB_DIR` that points to this directory before building the `server` or `database_manager`.
9495

@@ -111,3 +112,15 @@ cargo build --release
111112
The compiled executable be located at `/target/release/`.
112113

113114
Note that Windows users also need to have `sqlite3.dll` library next to the compiled programs, put compiled `server.exe`, `database_manager.exe` and `monitor.exe` to the same directory and copy `sqlite3.dll` from `server/sqlite3-windows` in this folder.
115+
116+
## Build: Client
117+
118+
To build the client you will need [Rust](https://www.rust-lang.org/tools/install).
119+
120+
Then in the `client` folder run:
121+
122+
```
123+
cargo build --release
124+
```
125+
126+
The compiled client binary will be located at `/client/target/release/`.

0 commit comments

Comments
 (0)