From fad6dfe1e347f5c35fec465ccc1144f878f6f69a Mon Sep 17 00:00:00 2001 From: Alex Kremer Date: Thu, 19 Feb 2026 20:44:28 +0900 Subject: [PATCH] Add xrpl.libpp as an exported lib in conan (#5022) --- conanfile.py | 1 + 1 file changed, 1 insertion(+) diff --git a/conanfile.py b/conanfile.py index 0fe0c47bf..1ab94b46b 100644 --- a/conanfile.py +++ b/conanfile.py @@ -170,6 +170,7 @@ class Xrpl(ConanFile): libxrpl = self.cpp_info.components['libxrpl'] libxrpl.libs = [ 'xrpl_core', + 'xrpl.libpb', 'ed25519', 'secp256k1', ]