提交 fd7cfc82 编写于 作者: M Marius Muja

Let python ctypes look for library in build/lib too

上级 0c6688ee
......@@ -146,6 +146,11 @@ def load_flann_library():
return flannlib
except Exception,e:
pass
try:
flannlib = cdll[os.path.join(root_dir,"build",libdir,libname)]
return flannlib
except Exception,e:
pass
tmp = os.path.dirname(root_dir)
if tmp == root_dir:
root_dir = None
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册