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.
19 lines
691 B
19 lines
691 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=../..
|
|
|
|
# These both happen by Main.cake as a pre-build step, but you can do it manually here
|
|
# Uncomment to generate data/puzzles.txt
|
|
# $CAKELISP --execute $KITTY_DIR/src/Decompression.cake || exit $?
|
|
# Uncomment to generate data/puzzles.bin
|
|
# $CAKELISP --execute $KITTY_DIR/src/PuzzleIO.cake || exit $?
|
|
|
|
$CAKELISP --execute $KITTY_DIR/src/Main.cake || exit $?
|
|
|