@@ -48,9 +48,18 @@ def requirements(self):
4848
4949 def imports (self ):
5050 # Copies all dll files from packages bin folder to my "bin" folder (win)
51- self .copy ("*.dll" , dst = "bin" , src = "bin" )
52- # Copies all dylib files from packages lib folder to my "lib" folder (macosx)
53- self .copy ("*.dylib*" , dst = "lib" , src = "lib" )
51+ self .copy ("*.dll" , dst = "benchmarks/Debug" , src = "bin" )
52+ self .copy ("*.dll" , dst = "benchmarks/Release" , src = "bin" )
53+ self .copy ("*.dll" , dst = "benchmarks/MinSizeRel" , src = "bin" )
54+ self .copy ("*.dll" , dst = "benchmarks/RelWithDebInfo" , src = "bin" )
55+ self .copy ("*.dll" , dst = "example/Debug" , src = "bin" )
56+ self .copy ("*.dll" , dst = "example/Release" , src = "bin" )
57+ self .copy ("*.dll" , dst = "example/MinSizeRel" , src = "bin" )
58+ self .copy ("*.dll" , dst = "example/RelWithDebInfo" , src = "bin" )
59+ self .copy ("*.dll" , dst = "tests/Debug" , src = "bin" )
60+ self .copy ("*.dll" , dst = "tests/Release" , src = "bin" )
61+ self .copy ("*.dll" , dst = "tests/MinSizeRel" , src = "bin" )
62+ self .copy ("*.dll" , dst = "tests/RelWithDebInfo" , src = "bin" )
5463 # Copies all so files from packages lib folder to my "lib" folder (linux)
5564 self .copy ("*.so*" , dst = "lib" , src = "lib" )
5665
0 commit comments