mirror of
https://github.com/ciphervance/supercell-wx.git
synced 2025-10-30 14:00:06 +00:00
DLLs should be copied from bindirs, not libdirs
This commit is contained in:
parent
3ec58659f5
commit
5fb27151b3
1 changed files with 2 additions and 1 deletions
|
|
@ -34,8 +34,9 @@ class SupercellWxConan(ConanFile):
|
||||||
|
|
||||||
def generate(self):
|
def generate(self):
|
||||||
for dep in self.dependencies.values():
|
for dep in self.dependencies.values():
|
||||||
|
if dep.cpp_info.bindirs:
|
||||||
|
copy(self, "*.dll", dep.cpp_info.bindirs[0], self.build_folder)
|
||||||
if dep.cpp_info.libdirs:
|
if dep.cpp_info.libdirs:
|
||||||
copy(self, "*.dll", dep.cpp_info.libdirs[0], self.build_folder)
|
|
||||||
copy(self, "*.dylib", dep.cpp_info.libdirs[0], self.build_folder)
|
copy(self, "*.dylib", dep.cpp_info.libdirs[0], self.build_folder)
|
||||||
|
|
||||||
def build(self):
|
def build(self):
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue