Skip to content

Commit

Permalink
🐛 Fixed broken libnode package
Browse files Browse the repository at this point in the history
  • Loading branch information
AnotherFoxGuy committed Sep 24, 2023
1 parent 129d6fa commit 73b35d9
Showing 1 changed file with 1 addition and 8 deletions.
9 changes: 1 addition & 8 deletions conan-recipes/libnode/all/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -185,18 +185,11 @@ def package(self):
)
copy(
self,
"libnode.so.*",
"libnode.so*",
os.path.join(self.source_folder, "out", str(self.settings.build_type)),
os.path.join(self.package_folder, "lib"),
keep_path=False
)
copy(
self,
"*v8_libplatform.a",
os.path.join(self.source_folder, "out", str(self.settings.build_type), "obj.target", "tools", "v8_gypfiles"),
os.path.join(self.package_folder, "lib"),
keep_path=False
)

def package_info(self):
self.cpp_info.includedirs = ["include", "include/node"]
Expand Down

0 comments on commit 73b35d9

Please sign in to comment.