From e9d9da34e86a1e5f0de155bf9086d3e5ff6b2da0 Mon Sep 17 00:00:00 2001 From: Star Rauchenberger Date: Thu, 7 Aug 2025 13:34:42 -0400 Subject: Protobuf works! Parsing connections --- proto/CMakeLists.txt | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 proto/CMakeLists.txt (limited to 'proto/CMakeLists.txt') diff --git a/proto/CMakeLists.txt b/proto/CMakeLists.txt new file mode 100644 index 0000000..c5abd46 --- /dev/null +++ b/proto/CMakeLists.txt @@ -0,0 +1,11 @@ +find_package(Protobuf REQUIRED) + +add_library(protos) + +protobuf_generate( + LANGUAGE cpp + TARGET protos + PROTOS human.proto data.proto common.proto +) + +target_link_libraries(protos PUBLIC protobuf::libprotobuf) -- cgit 1.4.1