This is an automated email from the ASF dual-hosted git repository.
pengzheng pushed a commit to branch hotfix/conan-private-dep
in repository https://gitbox.apache.org/repos/asf/celix.git
The following commit(s) were added to refs/heads/hotfix/conan-private-dep by
this push:
new 2d285da3 Add more tracing to CI.
2d285da3 is described below
commit 2d285da34979f75c7c4dbd8290d1d142b45ba604
Author: PengZheng <[email protected]>
AuthorDate: Wed Mar 6 21:56:10 2024 +0800
Add more tracing to CI.
---
conanfile.py | 2 ++
1 file changed, 2 insertions(+)
diff --git a/conanfile.py b/conanfile.py
index 5fe1424c..6fb5f59d 100644
--- a/conanfile.py
+++ b/conanfile.py
@@ -345,6 +345,8 @@ class CelixConan(ConanFile):
# tc.cache_variables["CMAKE_PROJECT_Celix_INCLUDE"] =
os.path.join(self.build_folder, "conan_paths.cmake")
# the following is workaround for
https://github.com/conan-io/conan/issues/7192
for dep in self.dependencies.host.values():
+ self.output.info(dep.cpp_info.libdir)
+ self.output.info(os.path.join(self.build_folder, "lib"))
if self.settings.os == "Linux":
copy(self, "*.so*", dep.cpp_info.libdir,
os.path.join(self.build_folder, "lib"))
elif self.settings.os == "Macos":