From 343be835723f635d2443e1401c8ab0ece6d02c93 Mon Sep 17 00:00:00 2001 From: Bart Thomee <11445373+bthomee@users.noreply.github.com> Date: Thu, 24 Jul 2025 14:59:26 -0400 Subject: [PATCH] Enable codegen grpc plugin --- BUILD.md | 2 +- conanfile.py | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/BUILD.md b/BUILD.md index 4b1c44f94a..fc2ee26aae 100644 --- a/BUILD.md +++ b/BUILD.md @@ -170,7 +170,7 @@ yet included in the Conan recipe: ``` # Conan 2.x - conan export --version 1.1.10 external/snappy + conan export --version 6.30.1 external/protobuf ``` Export our [Conan recipe for Snappy](./external/snappy). diff --git a/conanfile.py b/conanfile.py index 33829596ab..279a128001 100644 --- a/conanfile.py +++ b/conanfile.py @@ -55,7 +55,8 @@ class Xrpl(ConanFile): 'date/*:header_only': True, 'grpc/*:shared': False, 'grpc/*:secure': True, - 'grpc/*:codegen': False, + 'grpc/*:codegen': True, + 'grpc/*:cpp_plugin': True, 'grpc/*:csharp_ext': False, 'grpc/*:csharp_plugin': False, 'grpc/*:node_plugin': False,