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.
12 lines
310 B
12 lines
310 B
if [[ ! -e SFML-2.5.1 ]]; then
|
|
DOWNLOAD=TARGET=SFML-2.5.1-windows-gcc-7.3.0-mingw-64-bit
|
|
wget https://www.sfml-dev.org/files/${DOWNLOAD}.zip
|
|
unzip ${DOWNLOAD}.zip
|
|
rm ${DOWNLOAD}.zip
|
|
fi
|
|
cmake SFML-2.5.1/ -DCMAKE_TOOLCHAIN_FILE=mingw-w64-x86_64.cmake ../..
|
|
cd ..
|
|
python3 packer.py
|
|
cd windows
|
|
cmake --build .
|