scyther/src/subbuild-unix-unix.sh
Cas Cremers 2ba0de6abc New refactoring of build system for linux, should be clearer.
We also avoid building the w32 binary by default.
2012-06-12 23:12:14 +02:00

23 lines
467 B
Bash
Executable File

#!/bin/sh
# Default flags
CMFLAGS="-D CMAKE_BUILD_TYPE:STRING=Release"
# Make for linux
cmake $CMFLAGS -D TARGETOS=Unix . && make
echo
echo
echo "---------------------------------------------------------"
echo "Built the Linux binary"
# Copy to the correct location
cp scyther-linux ../gui/Scyther/
# bonus...
cp scyther-linux ~/bin
echo Copied the file to the gui/Scyther directory and \~/bin
echo "---------------------------------------------------------"