mirror of
https://github.com/google/flatbuffers.git
synced 2026-06-02 12:05:50 +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
16 lines
370 B
Bash
Executable File
16 lines
370 B
Bash
Executable File
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 "Checking generated code"
|
|
scripts/check_generate_code.py
|
|
echo "Done"
|