Initial commit

This commit is contained in:
Tony Klink 2024-06-06 22:40:08 -06:00
commit 74d66bddf5
Signed by: klink
GPG key ID: 85175567C4D19231
19 changed files with 1453 additions and 0 deletions

17
Makefile Normal file
View file

@ -0,0 +1,17 @@
build:
cargo build --release
cargo build --target x86_64-pc-windows-gnu --release
cp godot-live-link-face.gdextension target/release
cp -R addons target/release
cp target/release/libgodot_live_link_face.so target/release/addons/godot_live_link_face
cp target/x86_64-pc-windows-gnu/release/godot_live_link_face.dll target/release/addons/godot_live_link_face
mkdir build
mkdir -p build/addons/godot_live_link_face
mv target/release/addons/* build/addons/
cp README.md build/
cp LICENSE-AGPLv3+NIGGER build/
cp LICENSE-COMMERCIAL build/
mv target/release/godot-live-link-face.gdextension build/
zip -r godot-live-link-face.zip build/*
clean:
rm -r build