47 """Return the directory where the ESI dll's are located"""
50 if sys.platform ==
"win32":
51 dll_name =
"ESICppRuntime.dll"
52 for dir
in [_thisdir, _thisdir.parent, _thisdir.parent.parent]:
53 if (dir / dll_name).exists():
55 raise FileNotFoundError(
"ESICppRuntime.dll not found")
57 so_name =
"libESICppRuntime.so"
58 for dir
in [_thisdir, _thisdir.parent, _thisdir.parent.parent]:
59 if (dir /
"lib" / so_name).exists():
61 raise FileNotFoundError(
"libESICppRuntime.so not found")