samyeyo / LuaRT

Open source Windows programming framework for Lua
https://www.luart.org
Other
285 stars 17 forks source link

Where is the `ui.dll` file stored? #126

Closed Dismalitie closed 10 months ago

Dismalitie commented 10 months ago

I'm trying to a make my own app and I need the DLL to compile with rtc.exe, but I just can't find it. I've looked in LuaRT's module folder, I've looked in LuaRT-Studio's module folder and I just can't find it. If you could provide a link or path to the file on GitHub, that would be really helpful! Thanks! 👍

samyeyo commented 10 months ago

Hi Dismalitie,

The ui module is not a standalone module. It is bundled within the wluart.exe interpreter (see https://luart.org/doc/toolchain/interpreter.html)

If you want to compile a desktop application with rtc you must use the -w switch to tell the compiler to use the wluart.exe interpreter, or using wrtc by selecting the Windows Desktop subsystem.

Dismalitie commented 10 months ago

Thanks!