added additional search paths for dll on windows
parent
babc54478e
commit
f1e43f560a
|
@ -30,6 +30,10 @@ if os.name=='posix':
|
|||
|
||||
elif os.name=='nt':
|
||||
ext_whitelist.append('.dll')
|
||||
path_dirs = os.environ['PATH'].split(';')
|
||||
for dir_candidate in path_dirs:
|
||||
if 'assimp' in dir_candidate.lower():
|
||||
additional_dirs.append(dir_candidate)
|
||||
|
||||
#print(additional_dirs)
|
||||
def vec2tuple(x):
|
||||
|
|
Loading…
Reference in New Issue