mirror of
https://github.com/google/flatbuffers.git
synced 2026-06-02 20:15:34 +00:00
* removed test/generate_code.{sh|bat}
remove c++0x from generate_code.py
added check generate code script in python
add windows specific call
added flags to generate_code.py
Set c++-0x on BUILD_LEGACY
Skip generating monster_extra if requested
* added option to skip monster extra
* add conditional to skip 2010 check gen
21 lines
496 B
Bash
Executable File
21 lines
496 B
Bash
Executable File
set -e
|
|
|
|
JOBS=${JOBS:-1}
|
|
export UBSAN_OPTIONS=halt_on_error=1
|
|
export ASAN_OPTIONS=halt_on_error=1
|
|
export MAKEFLAGS="-j$JOBS"
|
|
|
|
config=$1
|
|
echo ""
|
|
echo "Build Flatbuffers project for '$config' with jobs=$JOBS"
|
|
|
|
cmake . -DCMAKE_BUILD_TYPE=$config \
|
|
-DFLATBUFFERS_BUILD_TESTS=ON -DFLATBUFFERS_CODE_SANITIZE=ON
|
|
cmake --build . --target all --clean-first -- -j$JOBS
|
|
ctest --extra-verbose --output-on-failure -j$JOBS
|
|
|
|
echo "Checking generated code"
|
|
scripts/check_generate_code.py
|
|
|
|
echo "C++ tests done"
|