Lean4 bindings to raylib 5.5-dev
, including Raymath and Raygui 4.0-dev
.
Add this to lakefile.lean
:
require raylib from git
"https://github.com/KislyjKisel/Raylib.lean" @ "main"
To the lean_exe
target add:
moreLinkArgs := #["-Llake-packages/raylib/raylib/build/raylib", "-lraylib"]
Then run lake update
and lake run raylib/buildSubmodule
.
Installation problems
- First build may take some time (around 10-20 minutes) to download raylib.
- On the first build git may return error 128. Usually restarting the build or re-cloning the raylib's repo helps.
- By default Lean's built-in C compiler is used to build ffi.
On Windows it fails due to missing stdlib headers.
You can use a different C compiler by passing the
cc
option with the compilers path (options are described above). To build raylibcmake
andgit
fromPATH
are used. If you don't have them in PATH you can provide their paths with optionsgit
andcmake
. If you want to clone and/or build raylib manually you can provide emptygit
andcmake
options and then run required commands (which can be found in the lakefile inbuildRaylibSubmodule
). You can also useraylib
option set tocustom
and provide separately built raylib vialflags
andcflags
options. See #3.
lake update
lake run raylib/buildSubmodule
lake exe raylib-test
Options can be specified by appending with $opts
(where $opts
is a NameMap
) to the require
statement
raylib
:"submodule"
(default) to compile from source using git submodules."system"
to find usingpkg-config
(uses hardcoded paths for the test executable)."custom"
to not pass library or header directories to the compiler.raygui
: allows usingRaygui
, downloads it as a submodule.cc
: c compiler invoked used to build native code. By default uses (ordered by priority)LEAN_CC
, the compiler provided by Lean toolchain orcc
.cflags
: additional flags passed to the native code compiler.lflags
: additional flags used to link test executable.cmdout
: if present, print output of commands used when building submodule.fork
: use raylib's fork that provides features used by implementations of some functions (notably audio callbacks) and some more.alloc
: allocator for external (opaque ffi) objects."lean"
(default) means using the allocator Lean uses."native"
to usemalloc
andfree
instead.git
,cmake
: git and cmake used to build raylib submodule, or""
(empty string) to skip their respective steps.
There are also options to customize raylib build.
buildSubmodule
: initializes submodule and builds it. Runs as part of the bindings build process.cleanCmakeCache
: removesbuild
directory from the submodule.