A Rush Hour game made with Cakelisp
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
459 B

#!/bin/sh
# Note that we everything build relative to GameLib, because GameLib isn't relocatable yet
# cd Dependencies/gamelib && ./Build_Debug.sh || exit $?
cd Dependencies/gamelib && ./Build_FromKitty.sh || exit $?
CAKELISP=./Dependencies/cakelisp/bin/cakelisp
# After relocation, this will be able to be simply .
KITTY_DIR=../..
$CAKELISP --execute $KITTY_DIR/src/Main.cake || exit $?
# $CAKELISP --execute $KITTY_DIR/src/Decompression.cake || exit $?