rust/y.cmd

9 lines
199 B
Batchfile
Raw Normal View History

2023-11-27 02:41:13 -06:00
@echo off
echo [BUILD] build system >&2
mkdir build 2>nul
rustc build_system/main.rs -o build\y.exe -Cdebuginfo=1 --edition 2021 || goto :error
build\y.exe %* || goto :error
goto :EOF
:error
exit /b