labast/build.bat
2024-02-05 14:13:44 +02:00

9 lines
276 B
Batchfile

@echo off
echo Building for Windows...
cargo build --release
echo Building for Linux...
cargo zigbuild --release --target x86_64-unknown-linux-gnu
echo Copy to bin...
copy target\release\labast.exe bin\ /Y
copy target\x86_64-unknown-linux-gnu\release\labast bin\ /Y
echo Done!