scyther/src/build-mac-universal.sh

14 lines
331 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 ppc and intel, and combine into universal binary
cmake $CMFLAGS -D TARGETOS=MacPPC . && make
cmake $CMFLAGS -D TARGETOS=MacIntel . && make
cmake $CMFLAGS . && make scyther-mac
# Copy to the correct locations
2007-05-03 12:22:00 +01:00
./copy2gui.sh