Don't keep path for Conan libraries, as we're now removing old folders in CI.
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Deukhoofd 2020-01-01 15:53:27 +01:00
parent 79d2f543fb
commit 6e498429f9
Signed by: Deukhoofd
GPG Key ID: ADF2E9256009EDCE
1 changed files with 2 additions and 2 deletions

View File

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