Don't reference the dylib directly.
https://forums.developer.apple.com/thread/4572 is the best reference I could find for this. Apple replaced (some?) dylibs with “text-based stub libraries” (.tbd’s). So we shouldn’t try to reference the dylib directly anymore.
This commit is contained in:
parent
43bfdace86
commit
407b406f34
1 changed files with 1 additions and 1 deletions
|
@ -153,7 +153,7 @@
|
|||
'$(SDKROOT)/System/Library/Frameworks/CoreFoundation.framework',
|
||||
'$(SDKROOT)/System/Library/Frameworks/IOKit.framework',
|
||||
# content_browser.gypi:
|
||||
'$(SDKROOT)/usr/lib/libbsm.dylib',
|
||||
'-lbsm',
|
||||
# bluetooth.gyp:
|
||||
'$(SDKROOT)/System/Library/Frameworks/IOBluetooth.framework',
|
||||
],
|
||||
|
|
Loading…
Reference in a new issue