Use CMake for protoc build
Some checks failed
Build / build-appimage (push) Has been cancelled
Build / build-android (push) Has been cancelled
Build / build-gentoo (push) Has been cancelled
Build / build-windows (push) Failing after 3m28s

This commit is contained in:
Zachary Hall 2024-10-20 13:35:56 -07:00
parent 6ce418e0ec
commit 495e8a4eab
2 changed files with 5 additions and 4 deletions

BIN
.CMakeLists.txt.swp Normal file

Binary file not shown.

View file

@ -1,6 +1,7 @@
#!/bin/bash #!/bin/bash
pushd subprojects/protobuf pushd subprojects/protobuf
./configure mkdir -p build-native && cd build-native
make cmake .. -G Ninja -DBUILD_TESTS=OFF
make install ninja
make distclean ninja install
popd