Capitalize Foundation library name
On a case-sensitive filesystem, the "foundation" library can not be found, as the framework starts with a capital "F". Because the Foundation framework is required by other parts of the build, this causes the build to fail. Should help with future builds, too, as the upcoming APFS is case-sensitive.
This commit is contained in:
parent
aa34e5e20e
commit
77ed5756dc
|
@ -329,7 +329,7 @@ if(APPLE)
|
|||
find_library(COREAUDIO_LIBRARY CoreAudio)
|
||||
find_library(COREFUND_LIBRARY CoreFoundation)
|
||||
find_library(CORESERV_LIBRARY CoreServices)
|
||||
find_library(FOUNDATION_LIBRARY foundation)
|
||||
find_library(FOUNDATION_LIBRARY Foundation)
|
||||
find_library(IOB_LIBRARY IOBluetooth)
|
||||
find_library(IOK_LIBRARY IOKit)
|
||||
find_library(QUICKTIME_LIBRARY QuickTime)
|
||||
|
|
Loading…
Reference in New Issue