Skip to content
Snippets Groups Projects
Commit 09a135c1 authored by Lars Bilke's avatar Lars Bilke
Browse files

[Conan] Copy shared libraries to bin folder.

parent e42afca4
No related branches found
No related tags found
No related merge requests found
......@@ -18,6 +18,11 @@ class OpenGeoSysConan(ConanFile):
"Boost:header_only=True", \
"Qt:xmlpatterns=True"
def imports(self):
self.copy(pattern="*.dll", dst="bin", src="bin")
self.copy(pattern="*.dylib*", dst="bin", src="lib")
self.copy(pattern="*.framework*", dst="bin", src="lib")
def build(self):
cmake = CMake(self.settings)
self.run('cmake "%s" %s' % (self.conanfile_directory, cmake.command_line))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment