Skip to content

Commit 827e9c2

Browse files
committed
Updating binaries
1 parent 24ffad0 commit 827e9c2

File tree

5 files changed

+14
-11
lines changed

5 files changed

+14
-11
lines changed

bin/Silent_Pass.exe

0 Bytes
Binary file not shown.

bin/Silent_Pass_x32

12 Bytes
Binary file not shown.

bin/Silent_Pass_x64

88 Bytes
Binary file not shown.

clean.sh

Lines changed: 0 additions & 3 deletions
This file was deleted.

compile_all.sh

Lines changed: 14 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,24 @@
11
#!/bin/bash
22

3+
mkdir build_all
4+
5+
cd build_all
36
echo -e "\n[*] Starting Normal building...\n"
4-
cmake .
7+
cmake ..
58
make
6-
mv bin/Silent_Pass bin/Silent_Pass_x64
7-
./clean.sh
9+
mv bin/Silent_Pass ../bin/Silent_Pass_x64
10+
rm -rf ./*
811

912
echo -e "\n[*] Starting 32 bit building...\n"
10-
cmake -DCMAKE_TOOLCHAIN_FILE=platforms/linux/linux_i686.toolchain.cmake .
13+
cmake -DCMAKE_TOOLCHAIN_FILE=platforms/linux/linux_i686.toolchain.cmake ..
1114
make
12-
mv bin/Silent_Pass bin/Silent_Pass_x32
13-
./clean.sh
15+
mv bin/Silent_Pass ../bin/Silent_Pass_x32
16+
rm -rf ./*
1417

1518
echo -e "\n[*] Starting MinGW building...\n"
16-
cmake -DCMAKE_TOOLCHAIN_FILE=platforms/linux/mingw32.toolchain.cmake .
19+
cmake -DCMAKE_TOOLCHAIN_FILE=platforms/linux/mingw32.toolchain.cmake ..
1720
make
18-
./clean.sh
21+
mv bin/Silent_Pass.exe ../bin/Silent_Pass.exe
22+
23+
cd ..
24+
rm -rf build_all/

0 commit comments

Comments
 (0)