Trying to make sync work

This commit is contained in:
Nikolai Rodionov
2025-02-06 13:42:14 +01:00
committed by Nikolai Rodionov
parent 8f61ab6c6b
commit cc709975ba
80 changed files with 8991 additions and 260 deletions

View File

@ -1,3 +1,18 @@
JOLT_VERSION = v0.14.0-stable
JOLT_URL = https://github.com/godot-jolt/godot-jolt/releases/download/${JOLT_VERSION}/godot-jolt_${JOLT_VERSION}.zip
JOLT_DIR = ./godot/jolt
install_jolt:
rm -rf ${JOLT_DIR}
$(eval DOWNLOAD := $(shell mktemp -d))
$(eval UNPACK := $(shell mktemp -d))
curl -L ${JOLT_URL} --output $(DOWNLOAD)/jolt.zip
unzip $(DOWNLOAD)/jolt.zip -d $(UNPACK)
mv $(UNPACK)/addons/* ${JOLT_DIR}
rm -rf $(DOWNLOAD)
rm -rf $(UNPACK)
rust_build:
cd rust && cargo build