Split crate into shared logic library and binary crate (#52)

This commit is contained in:
PROMETHIA-27
2025-06-28 16:53:40 -04:00
committed by GitHub
parent 5d00cede94
commit b93c0e4d96
64 changed files with 514 additions and 104 deletions

View File

@@ -5,8 +5,14 @@ tb_setup_mac:
ln -s $(pwd)/trenchbroom/hedz/hedz.fgd "$HOME/Library/Application Support/TrenchBroom/games/hedz/hedz.fgd" | true
ln -s $(pwd)/trenchbroom/hedz/GameConfig.cfg "$HOME/Library/Application Support/TrenchBroom/games/hedz/GameConfig.cfg" | true
run:
RUST_BACKTRACE=1 cargo r --bin client
dbg:
RUST_BACKTRACE=1 cargo r --features dbg
RUST_BACKTRACE=1 cargo r --bin client --features dbg
dbg-server:
RUST_BACKTRACE=1 cargo r --bin server --features dbg
check:
cargo fmt --check