7 lines
141 B
Bash
Executable file
7 lines
141 B
Bash
Executable file
#!/bin/bash
|
|
pushd subprojects/protobuf
|
|
mkdir -p build-native && cd build-native
|
|
cmake .. -G Ninja -DBUILD_TESTS=OFF
|
|
ninja
|
|
ninja install
|
|
popd
|