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.
23 lines
640 B
23 lines
640 B
#!/bin/sh
|
|
|
|
CAKELISP_DIR=Dependencies/cakelisp
|
|
|
|
# Build Cakelisp itself
|
|
echo "\n\nCakelisp\n\n"
|
|
cd $CAKELISP_DIR
|
|
./Build.sh || exit $?
|
|
|
|
cd ../..
|
|
|
|
echo "\n\nFont atlases\n\n"
|
|
|
|
CAKELISP=./Dependencies/cakelisp/bin/cakelisp
|
|
|
|
$CAKELISP --verbose-processes \
|
|
src/Config_FontBuilder.cake Dependencies/gamelib/src/PODFontAtlas.cake || exit $?
|
|
|
|
./font-atlas-builder "data/Fonts/UbuntuMono-R.ttf" 69 14 128 || exit $?
|
|
./font-atlas-builder "data/Fonts/Ubuntu-R.ttf" 69 14 128 || exit $?
|
|
# This should be 1 inch
|
|
./font-atlas-builder "data/Fonts/Ubuntu-R.ttf" 69 72 512 || exit $?
|
|
./font-atlas-builder "data/Fonts/Ubuntu-R.ttf" 69 20 256 || exit $?
|
|
|