diff options
Diffstat (limited to 'samples/monster/build.sh')
-rwxr-xr-x | samples/monster/build.sh | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/samples/monster/build.sh b/samples/monster/build.sh new file mode 100755 index 0000000..e090aed --- /dev/null +++ b/samples/monster/build.sh @@ -0,0 +1,27 @@ +#!/usr/bin/env bash + +set -e +cd `dirname $0`/../.. +ROOT=`pwd` +NAME=monster +TMP=${ROOT}/build/tmp/samples/${NAME} +EX=${ROOT}/samples/${NAME} + +CC=${CC:-cc} +CFLAGS_DEBUG="-g -I ${ROOT}/include" +CFLAGS_RELEASE="-O3 -DNDEBUG -I ${ROOT}/include" +${ROOT}/scripts/build.sh +mkdir -p ${TMP} +rm -rf ${TMP}/* +bin/flatcc -a -o ${TMP} ${EX}/${NAME}.fbs + +cp ${EX}/*.c ${TMP} +cd ${TMP} + +echo "building $NAME example (debug)" +$CC $CFLAGS_DEBUG ${NAME}.c ${ROOT}/lib/libflatccrt_d.a -o ${NAME}_d +echo "building $NAME example (release)" +$CC $CFLAGS_RELEASE ${NAME}.c ${ROOT}/lib/libflatccrt.a -o ${NAME} + +echo "running $NAME example (debug)" +./${NAME}_d |