looper/build-protoc.sh

8 lines
141 B
Bash
Raw Normal View History

2024-10-20 13:29:32 -07:00
#!/bin/bash
pushd subprojects/protobuf
2024-10-20 13:35:56 -07:00
mkdir -p build-native && cd build-native
cmake .. -G Ninja -DBUILD_TESTS=OFF
ninja
ninja install
popd