Move native DLL directory to 'lib'

This commit is contained in:
Joshua Granick
2019-04-11 12:09:26 -07:00
parent b78837602e
commit 20f626dab8
15 changed files with 55 additions and 57 deletions

View File

@@ -154,11 +154,11 @@ class CFFI
if (haxelib != "")
{
result = __tryLoad(haxelib + slash + "ndll" + slash + __sysName() + slash + library, library, method, args);
result = __tryLoad(haxelib + slash + "lib" + slash + __sysName() + slash + library, library, method, args);
if (result == null)
{
result = __tryLoad(haxelib + slash + "ndll" + slash + __sysName() + "64" + slash + library, library, method, args);
result = __tryLoad(haxelib + slash + "lib" + slash + __sysName() + "64" + slash + library, library, method, args);
}
}
}