looper/build-protoc.sh
Zachary Hall d484dd0c5f
Some checks failed
Build / download-system-deps (push) Successful in 40s
Build / build-gentoo (push) Successful in 1m8s
Build / get-source-code (push) Successful in 1m51s
Build / build-appimage (push) Successful in 26s
Build / build-android (push) Failing after 5m35s
Build / build-windows (push) Has been cancelled
Cache protoc build and hopefully fix Windows build
2024-10-20 18:56:48 -07:00

7 lines
145 B
Bash
Executable file

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