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
7 lines
145 B
Bash
Executable file
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
|