blob: 0efbcbea49db1ecbd29466d94ccf23cf5273afa3 (
plain)
1
2
3
4
5
6
7
8
|
#!/usr/bin/env bash
set -e
cd `dirname $0`/..
mkdir -p build/tmp/out
lldb -- \
bin/flatcc_d -a -o build/tmp/out --prefix zzz --common-prefix hello \
test/monster_test/monster_test.fbs
|