From 2fc6c3cb5245e148c1281d8d1a2be7b76ffdd145 Mon Sep 17 00:00:00 2001 From: Paulo Feodrippe Date: Wed, 24 Jul 2024 21:27:39 -0400 Subject: [PATCH] Update README --- README.md | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 8b9b2af..668a09e 100644 --- a/README.md +++ b/README.md @@ -10,13 +10,17 @@ using it). Go to and start the REPL for this project using ``` shell -# This will put the dynamic libs in the right place and start raylib in the main thread +# This will put the dynamic libs in the right place and start raylib in the main thread, +# open the REPL and call call the `init` function inside `leo.clj`. -# LINUX -clj -M:dev -m vybe.native.loader && clj -M:dev -m vybe.raylib +# Linux (x64) +clj -M:linux -m vybe.native.loader && clj -M:linux -m vybe.raylib -# MAC (OSX) -clj -M:dev -m vybe.native.loader && clj -M:osx -m vybe.raylib +# Mac (Universal) +clj -M:osx -m vybe.native.loader && clj -M:osx -m vybe.raylib + +# Windows (x64) +clj -M:win -m vybe.native.loader && clj -M:win -m vybe.raylib ``` ## Help wanted