a SilverChain Lua Wrapper
Item | What it is |
---|---|
LuaSilverChain.zip | Zip file with the LuaSilverChain module |
silverchain_darwin_import.c | C file to be used with Darwin to build the LuaSilverChain module |
silverchain_full.c | C file with the full implementation of the LuaSilverChain module |
silverchain_no_dependecie_included.c | C file with the implementation of the LuaSilverChain module without the dependencies included |
for installation just type
curl -L https://github.com/OUIsolutions/LuaSilverChain/releases/download/0.0.5/LuaSilverChain.zip -o LuaSilverChain.zip && unzip LuaSilverChain.zip && rm LuaSilverChain.zip
you can use the lib following these example
---@type SilverChainModue
silverchain = require("LuaSilverChain")
silverchain.generate({
src = "src",
project_short_cut = "my_project_name",
tags = { "dependencies", "consts", "macros", "types" ,"globals", "fdeclare" ,"fdef" },
implement_main=true,
main_name="main.c"
})
silverchain = require("LuaSilverChain")
silverchain.remove("src")
if you want to build the code from scracth you need to have Darwin installed on versio 0.020 and Docker our Podman installed on your machine. After install all dependecies,clone the repo on your machine , than run:
darwin run_blueprint build/ --mode folder