scyther/src/subbuild-mac-intel.sh

20 lines
442 B
Bash
Raw Normal View History

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"
# 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 "---------------------------------------------------------"
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
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