LUA is a powerful, fast, lightweight, embeddable scripting language.
Lua combines simple procedural syntax with powerful data description constructs based on associative arrays and extensible semantics. Lua is dynamically typed, runs by interpreting bytecode for a register-based virtual machine, and has automatic memory management with incremental garbage collection, making it ideal for configuration, scripting, and rapid prototyping.
LOADLIB= -DUSE_DLOPEN=1
DLLIB= -ldl
make && make install
# add lua to PATH
export PATH=$HOME/local/lua-5.0.3/bin:$PATH
export CMAKE_LIBRARY_PATH=$HOME/local/lua-5.0.3/lib:$CMAKE_LIBRARY_PATH
export CMAKE_INCLUDE_PATH=$HOME/local/lua-5.0.3/include:$CMAKE_INCLUDE_PATH
CMake is now able to find Lua.
N/A
N/A
The content of this page is available under the GNU Free Documentation License 1.2.