Skip to content

imring/disluapp

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

DisLua

Language Standard License

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).

Projects using this library

  • Luad - Disassembler for compiled Lua scripts.

Documentation

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.

Use in projects

Install the library using CMake:

$ mkdir build && cd build
$ cmake ..
$ sudo cmake --build . --target install

Add dislua to your CMake-project by using:

find_package(dislua REQUIRED)

target_link_libraries(yourproject PRIVATE dislua)

About

Parser of compiled Lua scripts

Topics

Resources

License

Stars

Watchers

Forks

Packages

 
 
 

Contributors