blob: 23838e74194b9024dd4f4afdde022d0802e2c5e7 [file] [log] [blame]
#!/bin/bash
rm -rf src-gen src-gen-js src-gen-cpp src-gen-py
mkdir src-gen src-gen-js src-gen-cpp src-gen-py
thrift -out src-gen --gen java src/api.thrift
thrift -out src-gen-js --gen js src/api.thrift
thrift -out src-gen-cpp --gen cpp src/api.thrift
thrift -out src-gen-py --gen py src/api.thrift
pushd src-gen-cpp
ln -s ../CMakeLists.txt
popd