Ensure .hpp files are packages with conan instead of .h files.
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Deukhoofd 2019-12-26 11:30:16 +01:00
parent 8e53ffb53d
commit aeb8632f51
Signed by: Deukhoofd
GPG Key ID: ADF2E9256009EDCE
1 changed files with 1 additions and 1 deletions

View File

@ -23,7 +23,7 @@ class CreatureLibConan(ConanFile):
# self.run("cmake --build . %s" % cmake.build_config)
def package(self):
self.copy("*.h", dst="include", src="src")
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)