rayjs/readme.md

20 lines
420 B
Markdown
Raw Normal View History

2023-05-22 17:06:19 +00:00
![rayjs logo](./doc/logo.png)
2023-05-22 16:11:49 +00:00
# rayjs - Javascript Bindings for Raylib
Javascript bindings for raylib in a single ~3mb executable
## Building
2023-05-22 17:06:19 +00:00
### Check out required files
```bash
2023-05-22 16:11:49 +00:00
git clone https://github.com/mode777/rayjs.git
git submodule update --init --recursive
```
2023-05-22 17:06:19 +00:00
### Build with cmake
Make sure you have cmake installed and in your path.
```bash
cd rayjs
mkdir build
cd build
cmake ..
make
```