2019-12-28 12:16:32 +01:00
|
|
|
#!/bin/bash
|
2020-05-09 12:01:28 +02:00
|
|
|
./build.sh release windows
|
|
|
|
./build.sh release
|
2019-12-28 12:16:32 +01:00
|
|
|
rm lite.zip 2>/dev/null
|
|
|
|
cp winlib/SDL2-2.0.10/x86_64-w64-mingw32/bin/SDL2.dll SDL2.dll
|
|
|
|
strip lite
|
|
|
|
strip lite.exe
|
|
|
|
strip SDL2.dll
|
|
|
|
zip lite.zip lite lite.exe SDL2.dll data -r
|
|
|
|
|