Skip to content

Commit

Permalink
missed part of the package
Browse files Browse the repository at this point in the history
  • Loading branch information
gagelarsen authored Oct 15, 2018
1 parent a2da22c commit 9af603b
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,9 +108,12 @@ def build(self):
'*_pyt.py -s ../xmsstamper/python', cwd="./lib")

def package(self):
self.copy("*.h", dst="include/xmsstamper", src="xmsstamper")
self.copy("*.h", dst="include/xmsinterp", src="xmsinterp")
self.copy("*.lib", dst="lib", keep_path=False)
self.copy("*.pyd", dst="lib", keep_path=False)
self.copy("*.exp", dst="lib", keep_path=False)
self.copy("*.pyd", dst="site-packages", keep_path=False)
self.copy("*_py.*.so", dst="site-packages", keep_path=False)
self.copy("*_py.so", dst="site-packages", keep_path=False)
self.copy("*.dll", dst="bin", keep_path=False)
self.copy("*.dylib*", dst="lib", keep_path=False)
self.copy("*.so", dst="lib", keep_path=False)
Expand Down

0 comments on commit 9af603b

Please sign in to comment.