6 lines
189 B
Batchfile
6 lines
189 B
Batchfile
@echo off
|
|
set PATH=%USERPROFILE%\.cargo\bin;%ProgramFiles%\Microsoft Visual Studio\2022\Community\VC\Tools\MSVC\14.44.35207\bin\Hostx64\x64;%PATH%
|
|
cd /d "%~dp0"
|
|
cargo build --release
|
|
pause
|