-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
23 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,3 +4,26 @@ | |
|
||
[Here you can find the deployment of the latest release.](https://eliasnijs.xyz/projects/boids/boids.html) | ||
|
||
## Build | ||
|
||
To build the project, you need to have emscripten installed. You can find the installation instructions [here](https://emscripten.org/docs/getting_started/downloads.html). | ||
|
||
After you have installed emscripten, clone the repository: | ||
|
||
```bash | ||
git clone --recurse-submodules [email protected]:eliasnijs/c-web-boids.git | ||
``` | ||
|
||
Install the dependencies with the following commands: | ||
|
||
```bash | ||
cd libs | ||
./buildlibs.sh | ||
cd .. | ||
``` | ||
|
||
Then you can build the project with the following commands: | ||
|
||
```bash | ||
./build.sh | ||
``` |