15 lines
No EOL
294 B
Bash
Executable file
15 lines
No EOL
294 B
Bash
Executable file
#!/bin/bash
|
|
|
|
rm -r bin
|
|
|
|
if [ "$(expr substr $(uname -s) 1 5)" == "Linux" ]; then
|
|
cmake -B bin -S ./
|
|
cd bin
|
|
make
|
|
cd ..
|
|
elif [ "$(expr substr $(uname -s) 1 10)" == "MINGW64_NT" ]; then
|
|
cmake -B bin -S ./ -G "MinGW Makefiles"
|
|
cd bin
|
|
mingw32-make.exe
|
|
cd ..
|
|
fi |