Skip to content
Snippets Groups Projects
Unverified Commit 3925aedb authored by Joris Vaillant's avatar Joris Vaillant
Browse files

python: Add a hack in windows_dll_manager.py to find eigenpy.dll

parent c4218ffa
No related branches found
No related tags found
No related merge requests found
...@@ -11,9 +11,12 @@ def get_dll_paths(): ...@@ -11,9 +11,12 @@ def get_dll_paths():
RELATIVE_DLL_PATH1 = "..\\..\\..\\..\\bin" RELATIVE_DLL_PATH1 = "..\\..\\..\\..\\bin"
# lib/site-packages/package # lib/site-packages/package
RELATIVE_DLL_PATH2 = "..\\..\\..\\bin" RELATIVE_DLL_PATH2 = "..\\..\\..\\bin"
# For unit test
RELATIVE_DLL_PATH3 = "..\\..\\bin"
return [ return [
os.path.join(os.path.dirname(__file__), RELATIVE_DLL_PATH1), os.path.join(os.path.dirname(__file__), RELATIVE_DLL_PATH1),
os.path.join(os.path.dirname(__file__), RELATIVE_DLL_PATH2), os.path.join(os.path.dirname(__file__), RELATIVE_DLL_PATH2),
os.path.join(os.path.dirname(__file__), RELATIVE_DLL_PATH3),
] ]
else: else:
return eigenpy_paths.split(os.pathsep) return eigenpy_paths.split(os.pathsep)
......
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