From 783a51a831cedc6464f70a85b3286c5959cc235f Mon Sep 17 00:00:00 2001 From: alemi Date: Wed, 14 Aug 2024 23:46:45 +0200 Subject: [PATCH] feat(lua): added script this is mostly symbolic, to show how easy it is to deal with lua native extensions (also i dont really want to pub this on luarocks yet...) --- dist/lua/build.sh | 5 +++++ 1 file changed, 5 insertions(+) create mode 100755 dist/lua/build.sh diff --git a/dist/lua/build.sh b/dist/lua/build.sh new file mode 100755 index 0000000..5c84a74 --- /dev/null +++ b/dist/lua/build.sh @@ -0,0 +1,5 @@ +#!/bin/sh + +cd ../.. +cargo build --release --features=lua +mv ./target/release/libcodemp.so ./dist/lua/codemp_lua.so