scyther/src/build-debug.sh
2008-08-21 21:57:42 +02:00

23 lines
457 B
Bash
Executable File

#!/bin/sh
# Default flags
CMFLAGS="-D CMAKE_BUILD_TYPE:STRING=Debug"
# Make for linux
cmake $CMFLAGS . && 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 directory and \~/bin
echo "---------------------------------------------------------"