extend readme

This commit is contained in:
Alexander Klingenbeck 2023-05-22 19:06:19 +02:00
parent 1d56b6afd1
commit 1e2d32ed3a
3 changed files with 13 additions and 5 deletions

BIN
doc/logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.8 KiB

View File

@ -27,7 +27,7 @@ while (!windowShouldClose()) // Detect window close button or ESC key
//---------------------------------------------------------------------------------- //----------------------------------------------------------------------------------
// TODO: Update your variables here // TODO: Update your variables here
//---------------------------------------------------------------------------------- //----------------------------------------------------------------------------------
// Draw // Draw
//---------------------------------------------------------------------------------- //----------------------------------------------------------------------------------
beginDrawing(); beginDrawing();

View File

@ -1,12 +1,20 @@
![rayjs logo](./doc/logo.png)
# rayjs - Javascript Bindings for Raylib # rayjs - Javascript Bindings for Raylib
Javascript bindings for raylib in a single ~3mb executable Javascript bindings for raylib in a single ~3mb executable
## Building ## Building
Rayjs is using cmake for building ### Check out required files
```bash
```
git clone https://github.com/mode777/rayjs.git git clone https://github.com/mode777/rayjs.git
git submodule update --init --recursive git submodule update --init --recursive
``` ```
Build target `rayjs` with cmake as usual ### Build with cmake
Make sure you have cmake installed and in your path.
```bash
cd rayjs
mkdir build
cd build
cmake ..
make
```