#!/bin/sh CAKELISP_DIR=Dependencies/cakelisp # Build Cakelisp itself echo "\n\nCakelisp\n\n" cd $CAKELISP_DIR ./Build.sh || exit $? cd ../.. echo "\n\nFile Helper\n\n" CAKELISP=./Dependencies/cakelisp/bin/cakelisp # For comparison # $CAKELISP --execute --verbose-processes \ # src/Config_Linux.cake \ # Dependencies/gamelib/src/AutoTest.cake src/PlatformTest.cake src/FileSystem.cake || exit $? # We can't run the full app yet until I set up SDL to build under Mingw $CAKELISP --verbose-processes \ src/Config_Mingw.cake \ Dependencies/gamelib/src/AutoTest.cake src/PlatformTest.cake src/FileSystem.cake || exit $? wine FileHelper.exe