KIT-ILIAS-downloader/build.sh
FliegendeWurst 4f05385841 build script
2021-04-14 17:05:07 +02:00

11 lines
364 B
Bash
Executable File

#!/bin/sh
rustup target add x86_64-unknown-linux-musl
cargo build --release --target x86_64-unknown-linux-musl
strip target/release/KIT-ILIAS-downloader
rustup target add x86_64-pc-windows-gnu
# if on Debian or similar
sudo apt install mingw-w64
cargo build --release --target x86_64-pc-windows-gnu
strip target/x86_64-pc-windows-gnu/release/KIT-ILIAS-downloader