Skip to content
Snippets Groups Projects
Commit 14d76b47 authored by Joscha Schmiedt's avatar Joscha Schmiedt
Browse files

Remove debug printing from conanfile

parent 118a0baf
Branches
Tags
2 merge requests!61Release 0.3.0,!49Resolve "EXTERN: Adapt to Conan 2"
This commit is part of merge request !49. Comments created here will be created in the context of that merge request.
...@@ -57,9 +57,7 @@ class CaosdbConan(ConanFile): ...@@ -57,9 +57,7 @@ class CaosdbConan(ConanFile):
for dep in self.dependencies.values(): for dep in self.dependencies.values():
dst = self.build_folder + "/build_tools" dst = self.build_folder + "/build_tools"
src = dep.cpp_info.bindirs[0] src = dep.cpp_info.bindirs[0]
print(f"Copying from src={src} to dst={dst}")
copied = copy(self, pattern="protoc*", dst=dst, src=src) copied = copy(self, pattern="protoc*", dst=dst, src=src)
print(f"Copied {copied}")
copy(self, pattern="grpc_cpp_plugin*", dst=dst, src=src) copy(self, pattern="grpc_cpp_plugin*", dst=dst, src=src)
def layout(self): def layout(self):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment