generated from macoy/gamelib-project-template
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.
18 lines
328 B
18 lines
328 B
#!/bin/sh
|
|
|
|
CAKELISP_DIR=Dependencies/cakelisp
|
|
|
|
# Build Cakelisp itself
|
|
echo "\n\nCakelisp\n\n"
|
|
cd $CAKELISP_DIR
|
|
./Build.sh || exit $?
|
|
|
|
cd ../..
|
|
|
|
echo "\n\nPresentation\n\n"
|
|
|
|
CAKELISP=./Dependencies/cakelisp/bin/cakelisp
|
|
|
|
$CAKELISP --verbose-processes --execute \
|
|
src/Config_Linux.cake \
|
|
src/Presentation.cake || exit $?
|
|
|