looper/build-protoc.sh
Zachary Hall 18a430637f
Some checks failed
Build / download-system-deps (push) Successful in 43s
Build / build-gentoo (push) Successful in 1m14s
Build / get-source-code (push) Successful in 1m52s
Build / build-appimage (push) Successful in 27s
Build / build-android (push) Successful in 14m24s
Build / build-windows (push) Failing after 1m48s
Cache protoc build and hopefully fix Windows build
2024-10-20 18:20: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