Files
lanspread/justfile
T
2026-02-26 20:12:25 +01:00

27 lines
350 B
Makefile

export RUSTFLAGS := "-C target-cpu=native"
export WEBKIT_DISABLE_COMPOSITING_MODE := "1"
server:
cargo build -p lanspread-server
client:
cargo tauri dev
buildclient:
cargo tauri build --no-bundle -- --profile dev
fmt:
cargo +nightly fmt
_fix:
cargo fix
cargo clippy --fix
fix: _fix fmt
clippy:
cargo clippy
clean:
cargo clean