You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
231 B
10 lines
231 B
#!/bin/bash
|
|
./build.sh release windows
|
|
./build.sh release
|
|
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
|
|
|
|
|