diff --git a/build-protoc.sh b/build-protoc.sh index 7dfbd37..6841338 100755 --- a/build-protoc.sh +++ b/build-protoc.sh @@ -1,6 +1,7 @@ #!/bin/bash pushd subprojects/protobuf -./configure -make -make install -make distclean +mkdir -p build-native && cd build-native +cmake .. -G Ninja +ninja +ninja install +popd