|
#!/bin/sh
|
|
|
|
# Build Cakelisp itself
|
|
echo "\n\nCakelisp\n\n"
|
|
cd Dependencies/cakelisp
|
|
./Build.sh || exit $?
|
|
cd ../..
|
|
|
|
echo "\n\nOgre\n\n"
|
|
./Dependencies/cakelisp/bin/cakelisp test/src/Config_Linux.cake test/src/OgreApp.cake || exit $?
|
|
echo "\n\nSDL Ogre\n\n"
|
|
./Dependencies/cakelisp/bin/cakelisp test/src/Config_Linux.cake test/src/SDLOgreApp.cake || exit $?
|
|
# echo "\n\nAuto Test (Math only)\n\n"
|
|
# ./Dependencies/cakelisp/bin/cakelisp --execute test/src/Config_Linux.cake src/AutoTest.cake src/Math.cake || exit $?
|
|
echo "\n\nAuto Test\n\n"
|
|
./Dependencies/cakelisp/bin/cakelisp test/src/Config_Linux.cake src/AutoTest.cake src/SDL.cake src/Math.cake src/Aubio.cake || exit $?
|
|
# ./Dependencies/cakelisp/bin/cakelisp test/src/Config_Linux.cake src/AutoTest.cake src/SDL.cake src/Tracy.cake src/Math.cake src/Aubio.cake || exit $?
|
|
|
|
echo "\n\nVocal Game (hot reload)\n\n"
|
|
./Dependencies/cakelisp/bin/cakelisp --verbose-processes test/src/Config_Linux.cake test/src/MakeHotReload.cake test/src/VocalGame.cake || exit $?
|
|
|
|
echo "\n\nLoader\n\n"
|
|
./Dependencies/cakelisp/bin/cakelisp --execute test/src/Config_Linux.cake test/src/Loader.cake || exit $?
|
|
|
|
echo "\n\nVocal Game (no reload)\n\n"
|
|
./Dependencies/cakelisp/bin/cakelisp \
|
|
test/src/Config_Linux.cake test/src/NoHotReload.cake test/src/VocalGame.cake || exit $?
|
|
|
|
# TESTING
|
|
|
|
# echo "\n\nVocal Game (no reload)\n\n"
|
|
# ../cakelisp/bin/cakelisp \
|
|
# test/src/MakeHotReload.cake test/src/VocalGame.cake || exit $?
|
|
|
|
# TODO: Support compiling as a library?
|
|
# ./Dependencies/cakelisp/bin/cakelisp src/Ogre.cake || exit $?
|