Skip to content

Commit

Permalink
Updating binaries
Browse files Browse the repository at this point in the history
  • Loading branch information
SilentVoid13 committed Apr 18, 2020
1 parent 24ffad0 commit 827e9c2
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 11 deletions.
Binary file modified bin/Silent_Pass.exe
Binary file not shown.
Binary file modified bin/Silent_Pass_x32
Binary file not shown.
Binary file modified bin/Silent_Pass_x64
Binary file not shown.
3 changes: 0 additions & 3 deletions clean.sh

This file was deleted.

22 changes: 14 additions & 8 deletions compile_all.sh
Original file line number Diff line number Diff line change
@@ -1,18 +1,24 @@
#!/bin/bash

mkdir build_all

cd build_all
echo -e "\n[*] Starting Normal building...\n"
cmake .
cmake ..
make
mv bin/Silent_Pass bin/Silent_Pass_x64
./clean.sh
mv bin/Silent_Pass ../bin/Silent_Pass_x64
rm -rf ./*

echo -e "\n[*] Starting 32 bit building...\n"
cmake -DCMAKE_TOOLCHAIN_FILE=platforms/linux/linux_i686.toolchain.cmake .
cmake -DCMAKE_TOOLCHAIN_FILE=platforms/linux/linux_i686.toolchain.cmake ..
make
mv bin/Silent_Pass bin/Silent_Pass_x32
./clean.sh
mv bin/Silent_Pass ../bin/Silent_Pass_x32
rm -rf ./*

echo -e "\n[*] Starting MinGW building...\n"
cmake -DCMAKE_TOOLCHAIN_FILE=platforms/linux/mingw32.toolchain.cmake .
cmake -DCMAKE_TOOLCHAIN_FILE=platforms/linux/mingw32.toolchain.cmake ..
make
./clean.sh
mv bin/Silent_Pass.exe ../bin/Silent_Pass.exe

cd ..
rm -rf build_all/

0 comments on commit 827e9c2

Please sign in to comment.