And once again

This commit is contained in:
2025-02-18 13:30:48 +01:00
parent 37154955d6
commit 16b06ba642
77 changed files with 581 additions and 199 deletions

View File

@ -18,3 +18,17 @@ rust_build:
rust_fmt:
cd rust && cargo fmt
GODOT_TOOLS ?= $(shell pwd)/godot_tools
godot_tools:
test -s $(GODOT_TOOLS)/bin/activate || python3 -m venv $(GODOT_TOOLS)
source $(GODOT_TOOLS)/bin/activate &&\
python3 -m pip install "gdtoolkit==4.*"
godot_lint: godot_tools
$(GODOT_TOOLS)/bin/gdlint ./godot
godot_fmt: godot_tools
$(GODOT_TOOLS)/bin/gdformat ./godot