Further tweaks for Conan
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
This commit is contained in:
parent
5f336a7211
commit
79d2f543fb
|
@ -28,10 +28,8 @@ class CreatureLibConan(ConanFile):
|
||||||
|
|
||||||
def package(self):
|
def package(self):
|
||||||
self.copy("*.hpp", dst="include", src="src")
|
self.copy("*.hpp", dst="include", src="src")
|
||||||
if self.settings.os == "Windows":
|
self.copy("*.dll", dst="bin")
|
||||||
self.copy("*.dll", dst="lib", keep_path=True)
|
self.copy("*.so", dst="lib")
|
||||||
else:
|
|
||||||
self.copy("*.so", dst="lib", keep_path=True)
|
|
||||||
|
|
||||||
def package_info(self):
|
def package_info(self):
|
||||||
self.cpp_info.libs = ["CreatureLibCore", "CreatureLibLibrary", "CreatureLibBattling"]
|
self.cpp_info.libs = ["CreatureLibCore", "CreatureLibLibrary", "CreatureLibBattling"]
|
||||||
|
|
Loading…
Reference in New Issue