wrtc.exe
is a GUI frontend for rtc, more user friendly, available in the bin\
directory.
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.
Usage
rtc.exe [-s][-c][-w][-i icon] [-lmodule][-o output] [directory] main.lua [file1.lua file2.lua...]
[-s]
Creates a static executable (without lua54.dll
dependency
[-c]
Create executable for console application (the default).
[-w]
Creates executable for Windows desktop application.
[-i icon]
Change default executable icon with the one provided.
[-lmodule]
Embed with the executable the provided Lua binary module (searching in the LuaRT \module
folder or in the current directory)
[-o output]
Sets executable name to 'output'.
[directory]
Optional path of the directory to be embedded in the executable.
main.lua
The Lua script that will be executed first.
[file1.lua file2.lua...]
Other scripts to embed in the executable.