Merge pull request #232 from autosquid/master
for python binding to work on mac '.dylib' should be added to ext_whitelistpull/239/head
commit
5adb6c6cda
|
@ -27,6 +27,8 @@ if os.name=='posix':
|
|||
# currently there's always a symlink called
|
||||
# libassimp.so in /usr/local/lib.
|
||||
ext_whitelist.append('.so')
|
||||
# libassimp.dylib in /usr/local/lib
|
||||
ext_whitelist.append('.dylib')
|
||||
|
||||
elif os.name=='nt':
|
||||
ext_whitelist.append('.dll')
|
||||
|
|
Loading…
Reference in New Issue