add a script to make a Windows release

This commit is contained in:
tildearrow 2021-12-29 15:27:26 -05:00
parent dc5990a37e
commit f8896d02d9
2 changed files with 32 additions and 1 deletions

3
.gitignore vendored
View File

@ -1,8 +1,9 @@
.vscode/
build/
release/
t/
winbuild/
*.dmf
*.swp
.cache/
.DS_Store
.DS_Store

30
scripts/release-win.sh Executable file
View File

@ -0,0 +1,30 @@
#!/bin/bash
# make Windows release
if [ ! -e /tmp/furnace ]; then
ln -s "$PWD" /tmp/furnace || exit 1
fi
cd /tmp/furnace
if [ ! -e winbuild ]; then
mkdir winbuild || exit 1
fi
cd winbuild
x86_64-w64-mingw32-cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_C_FLAGS="-O2" -DCMAKE_CXX_FLAGS="-O2 -Wall -Wextra -Wno-unused-parameter -Werror" .. || exit 1
make -j8 || exit 1
x86_64-w64-mingw32-strip -s furnace.exe || exit 1
cd ..
mkdir -p release/windows || exit 1
cd release/windows
cp ../../LICENSE LICENSE.txt || exit 1
cp ../../winbuild/furnace.exe . || exit 1
cp ../../README.md README.txt || exit 1
cp -r ../../papers papers || exit 1
zip -r furnace.zip LICENSE.txt furnace.exe README.txt papers