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
|