Copy .dll files as well
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Deukhoofd 2020-01-01 15:05:15 +01:00
parent 34cb7ee4db
commit 6d18282152
Signed by: Deukhoofd
GPG Key ID: ADF2E9256009EDCE
1 changed files with 1 additions and 0 deletions

View File

@ -29,6 +29,7 @@ class CreatureLibConan(ConanFile):
def package(self):
self.copy("*.hpp", dst="include", src="src")
self.copy("*.so", dst="lib", keep_path=True)
self.copy("*.dll", dst="lib", keep_path=True)
def package_info(self):
self.cpp_info.libs = ["CreatureLibCore", "CreatureLibLibrary", "CreatureLibBattling"]