Skip to content

Commit 3925aed

Browse files
committed
python: Add a hack in windows_dll_manager.py to find eigenpy.dll
1 parent c4218ff commit 3925aed

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

python/eigenpy/windows_dll_manager.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,12 @@ def get_dll_paths():
1111
RELATIVE_DLL_PATH1 = "..\\..\\..\\..\\bin"
1212
# lib/site-packages/package
1313
RELATIVE_DLL_PATH2 = "..\\..\\..\\bin"
14+
# For unit test
15+
RELATIVE_DLL_PATH3 = "..\\..\\bin"
1416
return [
1517
os.path.join(os.path.dirname(__file__), RELATIVE_DLL_PATH1),
1618
os.path.join(os.path.dirname(__file__), RELATIVE_DLL_PATH2),
19+
os.path.join(os.path.dirname(__file__), RELATIVE_DLL_PATH3),
1720
]
1821
else:
1922
return eigenpy_paths.split(os.pathsep)

0 commit comments

Comments
 (0)