Luart script to executable compiler

rtc.exe is a Lua script to executable compiler to build standalone Windows executables from your Luart scripts. It's then easier to deploy your applications without the need to install Luart for end users.

You can also embed files in your executable, that can be accessed seamlessly from your Lua scripts.

wrtc.exe is a GUI frontend for rtc, more user friendly, available in the bin\ directory.

Usage

Creates a static executable (without lua54.dll dependency

Create executable for console application (the default).

Creates executable for Windows desktop application.

Change default executable icon with the one provided.

Embed with the executable the provided Lua binary module (searching in the LuaRT \module folder or in the current directory)

Sets executable name to 'output'.

Optional path of the directory to be embedded in the executable.

The Lua script that will be executed first.

Other scripts to embed in the executable.

Howto access embedded files from your Luart application

Compiled programs with embedded content have a global embed module loaded at program start. The module contains all the necessary to interact with the embedded content.

It contains a "zip" member that hold a Zip instance already open for read access, that contains the directory content provided during compilation with rtc.
If no embedded content exists, embed will be a nil value.

You can check that the current script is compiled without embedded content by checking if embed is nil.

Howto require for an embedded module in your Luart application

To load an embedded Lua module, just require for the name of the module.
Please note that it works for Lua scripts and for embedded binary modules.