Skip to content

Commit

Permalink
Fix gRPC dependency. (#240)
Browse files Browse the repository at this point in the history
  • Loading branch information
szmyd authored Jul 17, 2024
1 parent eed8b9d commit e6cb53e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

class SISLConan(ConanFile):
name = "sisl"
version = "12.2.4"
version = "12.2.5"

homepage = "https://github.com/eBay/sisl"
description = "Library for fast data structures, utilities"
Expand Down Expand Up @@ -240,13 +240,13 @@ def package_info(self):
self.cpp_info.components["grpc"].set_property("pkg_config_name", f"libsisl_grpc")
self.cpp_info.components["grpc"].requires.extend([
"buffer",
"grpc::grpc",
"grpc::grpc++",
])
self.cpp_info.components["flip"].libs = ["flip"]
self.cpp_info.components["flip"].set_property("pkg_config_name", f"libflip")
self.cpp_info.components["flip"].requires.extend([
"logging",
"grpc::grpc",
"grpc::grpc++",
])
self.cpp_info.components["sisl"].requires.extend([
"grpc",
Expand Down

0 comments on commit e6cb53e

Please sign in to comment.