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

[Conan] Temporary fix mac conan issues related to Qt package.

The Qt package was rebuild and misses some symlinks inside its
*.framework/-directories which leads to an error in copying these
files. Temporary disable copying.
parent 3ca062c2
No related branches found
No related tags found
No related merge requests found
...@@ -20,7 +20,7 @@ class OpenGeoSysConan(ConanFile): ...@@ -20,7 +20,7 @@ class OpenGeoSysConan(ConanFile):
def imports(self): def imports(self):
self.copy(pattern="*.dll", dst="bin", src="bin") self.copy(pattern="*.dll", dst="bin", src="bin")
self.copy(pattern="*.dylib*", dst="bin", src="lib") self.copy(pattern="*.dylib*", dst="bin", src="lib")
self.copy(pattern="*.framework*", dst="bin", src="lib") # self.copy(pattern="*.framework*", dst="bin", src="lib")
self.copy(pattern="*.dll", dst="bin/platforms", src="plugins/platforms") self.copy(pattern="*.dll", dst="bin/platforms", src="plugins/platforms")
self.copy(pattern="*.dylib*", dst="bin/platforms", src="plugins/platforms") self.copy(pattern="*.dylib*", dst="bin/platforms", src="plugins/platforms")
......
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