DisLua is a header-only library that allows you to parse and rewrite the bytecode of compiled Lua scripts. At the moment, the library supports the LuaJIT compiler and a parser for luac v5.4 is being developed (branch luac).
- Luad - Disassembler for compiled Lua scripts.
You can build Doxygen documentation:
- Using CMake specifying the option
-DBUILD_DOC=ON:
$ mkdir build && cd build
$ cmake .. -DBUILD_DOC=ON
$ cmake --build . --target doc- Manually using the command
doxygen.
Install the library using CMake:
$ mkdir build && cd build
$ cmake ..
$ sudo cmake --build . --target installAdd dislua to your CMake-project by using:
find_package(dislua REQUIRED)
target_link_libraries(yourproject PRIVATE dislua)