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
|
2023-11-29 06:42:08 -06:00
|
|
|
exit /b
|