빌드 및 실행
빠른 요약
- 필수 도구: Rust stable + Windows 10 SDK + MSVC 빌드 도구
- 빠른 빌드:
cargo build --release - 타깃:
x86_64-pc-windows-msvc,aarch64-pc-windows-msvc - 테스트:
cargo test
요구 사항
- Rust 1.70+ (stable)
- Windows 10 SDK 이상
- Visual Studio Build Tools (MSVC toolchain)
빌드 명령
git clone https://github.com/Clickin/CBXShell-rs.gitcd CBXShell-rscargo build --release아키텍처별 빌드:
cargo build --release --target x86_64-pc-windows-msvccargo build --release --target aarch64-pc-windows-msvc테스트 실행:
cargo test