sonoro1234 / LuaJIT-ImGui

LuaJIT ffi binding for imgui, backends and extension widgets
MIT License
225 stars 29 forks source link

Typo in CMakeLists.txt #34

Closed Simon-L closed 11 months ago

Simon-L commented 1 year ago

First, thank you for your excellent work! I've started using these bindings for writing quick GUI apps on a handheld Linux device, it's very handy to have.

I just wanted to report a tiny typo in CMakeLists.txt, BAKENDS_FOLDER should obviously be BACKENDS_FOLDER.

Here's a patch: patch.txt

sonoro1234 commented 1 year ago

Just curious: what are you using for the sdl glfw and opengl backends?

Simon-L commented 1 year ago

Just curious: what are you using for the sdl glfw and opengl backends?

What do you mean by backend? I'm building for JELOS so I have to use a specific toolchain with a sysroot containing all the dependencies so the SDL and GL backends are the versions already built by the toolchain with the shared objects and dev headers available in the sysroot. Thankfully, the target systems rely on SDL already so no extra dependencies was needed!

sonoro1234 commented 11 months ago

done