Skip to content

Commit

Permalink
Update FR_API_VERSION_MINOR in include/ferox.h
Browse files Browse the repository at this point in the history
  • Loading branch information
jdeokkim committed Nov 12, 2024
2 parents ffdd71e + 0e717cf commit 416d7e6
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
8 changes: 5 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ PS C:\Users\jdeokkim\source\repos\ferox> nmake -f NMakefile

### [w64devkit](https://github.com/skeeto/w64devkit)

Download the latest release of w64devkit from [here](https://github.com/skeeto/w64devkit/releases), extract the `.zip` file to your working directory, and run `w64devkit.exe`.
Download the latest release of w64devkit from [here](https://github.com/skeeto/w64devkit/releases), run `w64devkit-x64-2.0.0.exe` and wait for the archive to be extracted to your working directory, and run `w64devkit/w64devkit.exe`.

```console
$ mkdir ~/workspace && cd ~/workspace
Expand All @@ -152,14 +152,16 @@ You may need to compile raylib for Windows before compiling the examples:
```console
$ cd .. && wget https://github.com/raysan5/raylib/archive/refs/tags/4.5.0.zip
$ unzip 4.5.0.zip && mv raylib-4.5.0 raylib
$ cd raylib/src && make -j`nproc`
$ make -C raylib/src -j`nproc`
$ rm ./*.zip
```

Finally, in order to compile the examples, do:

```console
$ cd ~/workspace/ferox/examples
$ make -f Makefile.mingw RAYLIB_PATH=../../raylib
$ make -f Makefile.mingw \
RAYLIB_INCLUDE_PATH=../../raylib/src RAYLIB_LIBRARY_PATH=../../raylib/src
```

</details>
Expand Down
4 changes: 2 additions & 2 deletions include/ferox.h
Original file line number Diff line number Diff line change
Expand Up @@ -81,8 +81,8 @@ extern "C" {

/* The major, minor, and the patch release version of this library. */
#define FR_API_VERSION_MAJOR 0
#define FR_API_VERSION_MINOR 10
#define FR_API_VERSION_PATCH 0
#define FR_API_VERSION_MINOR 9
#define FR_API_VERSION_PATCH 6

/* The full version string of this library. */
#define FR_API_VERSION \
Expand Down

0 comments on commit 416d7e6

Please sign in to comment.