20 lines
442 B
Bash
Executable File
20 lines
442 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# Default flags
|
|
CMFLAGS="-D CMAKE_BUILD_TYPE:STRING=Release"
|
|
|
|
# Make for intel
|
|
cmake $CMFLAGS -D TARGETOS=MacIntel . && make scyther-mac
|
|
|
|
echo
|
|
echo
|
|
echo "---------------------------------------------------------"
|
|
echo "Built the Mac intel binary"
|
|
|
|
# Copy to the correct locations
|
|
cp scyther-mac ../gui/Scyther/
|
|
|
|
echo Copied the files to their respective locations
|
|
echo "---------------------------------------------------------"
|
|
|