From fc7168544db731f384426ecee92c254e6800cfb7 Mon Sep 17 00:00:00 2001 From: Rhys Mainwaring Date: Tue, 23 Apr 2024 23:01:22 +0100 Subject: [PATCH] Do not use system protobuf as missing proto_api.h - https://github.com/pybind/pybind11_protobuf/issues/127 Signed-off-by: Rhys Mainwaring --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 46388d1..dc115b9 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,7 +34,7 @@ find_package(absl ${_absl_version} QUIET) set(_protobuf_repository "https://github.com/protocolbuffers/protobuf.git") set(_protobuf_version 3.23.3) set(_protobuf_tag v23.3) -find_package(Protobuf ${_protobuf_version} QUIET) +# find_package(Protobuf ${_protobuf_version} QUIET) set(_pybind11_repository "https://github.com/pybind/pybind11.git") set(_pybind11_version 2.11.1)