Skip to content

Latest commit

 

History

History
44 lines (32 loc) · 1.05 KB

File metadata and controls

44 lines (32 loc) · 1.05 KB

aui.bindings.lua

This project provides Lua bindings for the AUI Framework. It allows to use C++ objects from Lua and et cetera. You can build an AUI application entirely in Lua, as well as incorporate scripted Lua views into existing AUI layouts.

Building

  1. Clone the repository:
    git clone https://github.com/aui-framework/bindings-lua.git
    cd bindings-lua
  1. Create a build directory:
    mkdir build
    cd build
  1. Configure the build using CMake:
    cmake ..
  1. Build the project:
    cmake --build .

Example

example

You can optionally build examples by setting the option to TRUE during CMake configuration: AUI_LUA_BUILD_EXAMPLES

cmake .. -DAUI_LUA_BUILD_EXAMPLES=TRUE

The examples directory contains a basic example that demonstrates how to create a simple AUI window using Lua.

Contributing

Contributions are welcome! Please submit bug reports and feature requests through the GitHub issue tracker. Pull requests are also welcome.