From 1196ebd22824979429d4c4798e4961b04b1e9382 Mon Sep 17 00:00:00 2001 From: Aadhavan Srinivasan Date: Tue, 5 Mar 2024 22:42:28 -0500 Subject: [PATCH] Updated README --- README.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 07ea54f..773255e 100644 --- a/README.md +++ b/README.md @@ -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