From b7f99ae2033d339096486a37dc080493edda0c8c Mon Sep 17 00:00:00 2001 From: SpaceIm <30052553+SpaceIm@users.noreply.github.com> Date: Thu, 27 Oct 2022 18:26:44 +0200 Subject: [PATCH] add empty layout for the moment --- recipes/grpc/all/conanfile.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/recipes/grpc/all/conanfile.py b/recipes/grpc/all/conanfile.py index 4c6863f8d53d4b..3377878c4b9b17 100644 --- a/recipes/grpc/all/conanfile.py +++ b/recipes/grpc/all/conanfile.py @@ -90,6 +90,9 @@ def configure(self): self.options["googleapis"].shared = True self.options["grpc-proto"].shared = True + def layout(self): + pass + def requirements(self): if is_msvc(self) and Version(self.version) < "1.47": self.requires("abseil/20211102.0")