diff --git a/.CMakeLists.txt.swp b/.CMakeLists.txt.swp new file mode 100644 index 0000000..5de03fd Binary files /dev/null and b/.CMakeLists.txt.swp differ diff --git a/build-protoc.sh b/build-protoc.sh index 7dfbd37..27e1d24 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 -DBUILD_TESTS=OFF +ninja +ninja install +popd