22 lines
471 B
Bash
Executable File
22 lines
471 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# Build the Windows binaries under Linux
|
|
set -eux -o pipefail
|
|
|
|
BIN_NAME=dscanner
|
|
|
|
# Allow the script to be run from anywhere
|
|
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
|
cd $DIR
|
|
|
|
source setup-ldc-windows.sh
|
|
|
|
# Run LDC with cross-compilation
|
|
archiveName="$BIN_NAME-$VERSION-$OS-$ARCH_SUFFIX.zip"
|
|
echo "Building $archiveName"
|
|
mkdir -p bin
|
|
DC=ldmd2 make ldcbuild
|
|
|
|
cd bin
|
|
mv "${BIN_NAME}" "${BIN_NAME}.exe"
|
|
zip "$archiveName" "${BIN_NAME}.exe"
|