Skip to content

Commit aadfa06

Browse files
committed
tooling: Fix runtime cmake path incorrectly set for editable
1 parent 10737bf commit aadfa06

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

runtime/conanfile.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -84,9 +84,8 @@ def package_info(self):
8484

8585
# Make sure we can find the libs and *.cmake files, both in editable
8686
# mode and in the normal package mode:
87-
# TODO: Is this still necessarytools?
8887
if not self.in_local_cache:
89-
self.cpp_info.builddirs.append("cmake")
88+
self.cpp_info.builddirs.append(os.path.join(self.source_folder, "cmake"))
9089
self.cpp_info.libs = ["cloe-runtime"]
9190
else:
9291
self.cpp_info.builddirs.append(os.path.join("lib", "cmake", "cloe"))

0 commit comments

Comments
 (0)