From a87146ce90c1ec4da21d8929e46e086bce693cf3 Mon Sep 17 00:00:00 2001 From: mbellgardt <martin.bellgardt@rwth-aachen.de> Date: Wed, 30 May 2018 13:47:18 +0200 Subject: [PATCH] Attemt to fix the strange .txt files being copied to build/lib folder --- conanfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conanfile.py b/conanfile.py index f76578b8..0d178ba3 100644 --- a/conanfile.py +++ b/conanfile.py @@ -67,6 +67,6 @@ class ProjectPhoenix(ConanFile): self.copy("*.dll", dst="demos/combustion_demo/Debug", src="bin") self.copy("*.dll", dst="demos/combustion_demo/Release", src="bin") self.copy("*.so", dst="lib", src="lib") - self.copy("*.so*", dst="lib", src="lib") + self.copy("*.so.*", dst="lib", src="lib") self.copy("*.dylib", dst="lib", src="lib") self.copy("*.dylib", dst="tests", src="lib") -- GitLab