# Build Commands ## Desktop ```bash cargo build # debug cargo build --release # release cargo run # game mode cargo run -- --editor # editor mode ``` ## iOS iOS builds require macOS. The project uses a custom SDL3 + wgpu iOS export pipeline. See `brain-project/ios/readme.md` in QMD for the full export guide. ## Android ```bash cargo apk build ``` ## Checks ```bash cargo check cargo fmt cargo clippy ```