Ensure extern headers are included in conan.
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
This commit is contained in:
parent
28f427fa36
commit
394042ec65
|
@ -34,6 +34,7 @@ class ArbutilsConan(ConanFile):
|
||||||
|
|
||||||
def package(self):
|
def package(self):
|
||||||
self.copy("*.hpp", dst="include/Arbutils", src="src")
|
self.copy("*.hpp", dst="include/Arbutils", src="src")
|
||||||
|
self.copy("*.hpp", dst="include/extern", src="extern")
|
||||||
self.copy("*.dll", dst="bin", keep_path=False)
|
self.copy("*.dll", dst="bin", keep_path=False)
|
||||||
self.copy("*.so", dst="lib", keep_path=False)
|
self.copy("*.so", dst="lib", keep_path=False)
|
||||||
self.copy("*.a", dst="lib", keep_path=False)
|
self.copy("*.a", dst="lib", keep_path=False)
|
||||||
|
|
Loading…
Reference in New Issue