Keep path for .so files, as to prevent overwriting.
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
This commit is contained in:
parent
2310dc241a
commit
d266700822
|
@ -24,11 +24,7 @@ class CreatureLibConan(ConanFile):
|
|||
|
||||
def package(self):
|
||||
self.copy("*.hpp", dst="include", src="src")
|
||||
self.copy("*.lib", dst="lib", keep_path=False)
|
||||
self.copy("*.dll", dst="bin", keep_path=False)
|
||||
self.copy("*.dylib*", dst="lib", keep_path=False)
|
||||
self.copy("*.so", dst="lib", keep_path=False)
|
||||
self.copy("*.a", dst="lib", keep_path=False)
|
||||
self.copy("*.so", dst="lib", keep_path=True)
|
||||
|
||||
def package_info(self):
|
||||
self.cpp_info.libs = ["CreatureLibCore", "CreatureLibLibrary", "CreatureLibBattling"]
|
||||
|
|
Loading…
Reference in New Issue