Skip to content
Snippets Groups Projects
Commit 2f57a68a authored by jwendt's avatar jwendt
Browse files

fixing faulty conanfile changes

parent 4988bf65
Branches
No related tags found
No related merge requests found
...@@ -36,17 +36,16 @@ class ProjectPhoenix(ConanFile): ...@@ -36,17 +36,16 @@ class ProjectPhoenix(ConanFile):
("freeimage/3.17.0@RWTH-VR/thirdparty")) # comma separated list of requirements ("freeimage/3.17.0@RWTH-VR/thirdparty")) # comma separated list of requirements
generators = "cmake" generators = "cmake"
def configure(self): def configure(self):
self.options["freeimage"].shared = True self.options["freeimage"].shared = True
self.options["glew"].shared = True
def imports(self): def imports(self):
self.copy("*.dll", dst="bin", src="bin") self.copy("*.dll", dst="lib", src="bin")
self.copy("*.dll", dst="tests/Debug", src="bin") self.copy("*.dll", dst="tests/Debug", src="bin")
self.copy("*.dll", dst="demos/viewer/Debug", src="bin")
self.copy("*.dll", dst="tests/Release", src="bin") self.copy("*.dll", dst="tests/Release", src="bin")
self.copy("*.dll", dst="demos/viewer/Debug", src="bin")
self.copy("*.dll", dst="demos/viewer/Release", src="bin") self.copy("*.dll", dst="demos/viewer/Release", src="bin")
self.copy("*.so.*", dst="tests", src="lib") self.copy("*.so", dst="lib", src="lib")
self.copy("*.so", dst="tests", src="lib") if self.settings.os == "Linux":
self.copy("*.so.2.1", dst="tests", src="lib") self.run("ln -s libGLEW.so lib/libGLEW.so.2.1")
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment