looper/build-protoc.sh
Zachary Hall 495e8a4eab
Some checks failed
Build / build-appimage (push) Has been cancelled
Build / build-android (push) Has been cancelled
Build / build-gentoo (push) Has been cancelled
Build / build-windows (push) Failing after 3m28s
Use CMake for protoc build
2024-10-20 13:36:21 -07:00

7 lines
141 B
Bash
Executable file

#!/bin/bash
pushd subprojects/protobuf
mkdir -p build-native && cd build-native
cmake .. -G Ninja -DBUILD_TESTS=OFF
ninja
ninja install
popd