Zachary Hall
1814ec96e7
Some checks failed
Build / download-system-deps (push) Successful in 39s
Build / build-gentoo (push) Successful in 1m32s
Build / get-source-code (push) Successful in 1m52s
Build / build-appimage (push) Successful in 30s
Build / build-android (push) Successful in 13m4s
Build / build-windows (push) Failing after 1m25s
7 lines
146 B
Bash
Executable file
7 lines
146 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
|