File tree Expand file tree Collapse file tree 5 files changed +14
-11
lines changed Expand file tree Collapse file tree 5 files changed +14
-11
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 11#! /bin/bash
22
3+ mkdir build_all
4+
5+ cd build_all
36echo -e " \n[*] Starting Normal building...\n"
4- cmake .
7+ cmake ..
58make
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
912echo -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 ..
1114make
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
1518echo -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 ..
1720make
18- ./clean.sh
21+ mv bin/Silent_Pass.exe ../bin/Silent_Pass.exe
22+
23+ cd ..
24+ rm -rf build_all/
You can’t perform that action at this time.
0 commit comments