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.
16 lines
367 B
16 lines
367 B
set -e
|
|
|
|
JOBS=${JOBS:-1}
|
|
config=$1
|
|
echo ""
|
|
echo "Build 'flatc' compiler for '$config'"
|
|
|
|
cmake . -DCMAKE_BUILD_TYPE=$config \
|
|
-DFLATBUFFERS_BUILD_FLATC=1 -DFLATBUFFERS_STATIC_FLATC=1 \
|
|
-DFLATBUFFERS_BUILD_TESTS=0 -DFLATBUFFERS_INSTALL=0
|
|
cmake --build . --target flatc --clean-first -- -j$JOBS
|
|
|
|
echo "Check generated code"
|
|
.travis/check-generate-code.sh
|
|
echo "Done"
|