Skip to content

Commit

Permalink
Merge pull request #23349 from rockwotj/protobuf-cmake
Browse files Browse the repository at this point in the history
  • Loading branch information
rockwotj authored Sep 17, 2024
2 parents ab501e4 + bd76fb0 commit dd0d993
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/v/serde/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,5 @@ v_cc_library(
absl::flat_hash_map
v::compression
)
add_subdirectory(protobuf)
add_subdirectory(test)
13 changes: 13 additions & 0 deletions src/v/serde/protobuf/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
find_package(Protobuf REQUIRED)

v_cc_library(
NAME serde_protobuf
SRCS
parser.cc
DEPS
Seastar::seastar
v::bytes
v::container
v::utils
protobuf::libprotobuf
)

0 comments on commit dd0d993

Please sign in to comment.