2007-05-03 12:22:00 +01:00
|
|
|
#!/bin/sh
|
|
|
|
|
2007-05-03 12:32:07 +01:00
|
|
|
# Default flags
|
|
|
|
CMFLAGS="-D CMAKE_BUILD_TYPE:STRING=Release"
|
|
|
|
|
2012-11-22 13:31:19 +00:00
|
|
|
# Make for intel
|
|
|
|
cmake $CMFLAGS -D TARGETOS=MacIntel . && make scyther-mac
|
2007-05-03 12:32:07 +01:00
|
|
|
|
2007-05-03 14:21:43 +01:00
|
|
|
echo
|
2007-05-03 13:00:00 +01:00
|
|
|
echo
|
2007-05-03 14:21:43 +01:00
|
|
|
echo "---------------------------------------------------------"
|
2012-11-22 13:31:19 +00:00
|
|
|
echo "Built the Mac intel binary"
|
2007-05-03 13:00:00 +01:00
|
|
|
|
2007-05-03 12:32:07 +01:00
|
|
|
# Copy to the correct locations
|
2007-05-21 12:24:19 +01:00
|
|
|
cp scyther-mac ../gui/Scyther/
|
2007-05-03 13:00:00 +01:00
|
|
|
|
|
|
|
echo Copied the files to their respective locations
|
2007-05-03 14:21:43 +01:00
|
|
|
echo "---------------------------------------------------------"
|
2007-05-03 12:22:00 +01:00
|
|
|
|