9 lines
276 B
Batchfile
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! |