We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 10737bf commit aadfa06Copy full SHA for aadfa06
runtime/conanfile.py
@@ -84,9 +84,8 @@ def package_info(self):
84
85
# Make sure we can find the libs and *.cmake files, both in editable
86
# mode and in the normal package mode:
87
- # TODO: Is this still necessarytools?
88
if not self.in_local_cache:
89
- self.cpp_info.builddirs.append("cmake")
+ self.cpp_info.builddirs.append(os.path.join(self.source_folder, "cmake"))
90
self.cpp_info.libs = ["cloe-runtime"]
91
else:
92
self.cpp_info.builddirs.append(os.path.join("lib", "cmake", "cloe"))
0 commit comments