Skip to content

Commit

Permalink
(building) Change deprecated field into the new name.
Browse files Browse the repository at this point in the history
CURA-11622
  • Loading branch information
rburema committed Nov 21, 2024
1 parent e2beeb3 commit e28ba74
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit e28ba74

Please sign in to comment.