looper/build-protoc.sh

8 lines
146 B
Bash
Raw Normal View History

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