From e28ba74e5b934f1c285e5d45358e0c59f7417416 Mon Sep 17 00:00:00 2001 From: Remco Burema Date: Thu, 21 Nov 2024 09:57:42 +0100 Subject: [PATCH] (building) Change deprecated field into the new name. CURA-11622 --- conanfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conanfile.py b/conanfile.py index 29e83ec..5e48c83 100644 --- a/conanfile.py +++ b/conanfile.py @@ -114,7 +114,7 @@ def generate(self): if is_msvc(self): tc.variables["USE_MSVC_RUNTIME_LIBRARY_DLL"] = not is_msvc_static_runtime(self) tc.cache_variables["CMAKE_POLICY_DEFAULT_CMP0077"] = "NEW" - tc.variables["GRPC_PROTOS"] = ";".join([str(p).replace("\\", "/") for p in Path(self.source_path).rglob("*.proto")]) + tc.variables["GRPC_PROTOS"] = ";".join([str(p).replace("\\", "/") for p in Path(self.source_folder).rglob("*.proto")]) tc.generate() tc = CMakeDeps(self)