Skip to content

Commit

Permalink
fix conan build
Browse files Browse the repository at this point in the history
  • Loading branch information
igagis committed Jul 21, 2021
1 parent 5a02487 commit 2eb5eae
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions conan/conanfile.py.in
Original file line number Diff line number Diff line change
Expand Up @@ -36,14 +36,14 @@ class AggConan(ConanFile):
self.run("CONANBUILDINFO_DIR=$(pwd)/ make autojobs=true test")

def package(self):
self.copy("*.h", dst="include/agg", src=self.name + "/src/agg/include")
self.copy("*.hpp", dst="include/agg", src=self.name + "/src/agg/include")
self.copy("*.h", dst="include/agg", src="src/agg/include")
self.copy("*.hpp", dst="include/agg", src="src/agg/include")
self.copy("*" + self.name + ".lib", dst="lib", keep_path=False)
self.copy("*.dll", dst="bin", src=self.name + "/src/build", keep_path=False)
self.copy("*.so", dst="lib", src=self.name + "/src/build", keep_path=False)
self.copy("*.so.*", dst="lib", src=self.name + "/src/build", keep_path=False)
self.copy("*.dylib", dst="lib", src=self.name + "/src/build", keep_path=False)
self.copy("*.a", dst="lib", src=self.name + "/src/build", keep_path=False)
self.copy("*.dll", dst="bin", src="src/build", keep_path=False)
self.copy("*.so", dst="lib", src="src/build", keep_path=False)
self.copy("*.so.*", dst="lib", src="src/build", keep_path=False)
self.copy("*.dylib", dst="lib", src="src/build", keep_path=False)
self.copy("*.a", dst="lib", src="src/build", keep_path=False)

def package_info(self):
self.cpp_info.libs = ["antigrain"]

0 comments on commit 2eb5eae

Please sign in to comment.