Updated README

This commit is contained in:
2024-03-05 22:42:28 -05:00
parent 3a9a32d7e3
commit 1196ebd228

View File

@@ -13,7 +13,12 @@ This application uses [Meson](https://mesonbuild.com/) as a build system. To bui
2. Install __raylib__ from the link above (THIS IS OPTIONAL, SEE STEP 5)
3. Set up the build directory with the `meson setup build` command.
4. Compile the application, with the existing raylib installation, using `meson compile -C build`.
5. If you don't have raylib installed, you can create a statically linked version of the library on Linux, using `meson compile -C build -Ddefault_library=static`.
5. If you don't have raylib installed, you can create a statically linked version of the library on Linux by running the following commands:
```
meson configure -Ddefault_library=static build/
meson compile -C build -Ddefault_library=static
```
## Running