Ensure .hpp files are packages with conan instead of .h files.
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
This commit is contained in:
parent
8e53ffb53d
commit
aeb8632f51
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue