Change common libs for XCode/apple (RIPD-305):

Removes unnecessary common link libs related to openssl, which we link
to explicitly using finder vars now. THis allows the generated XCode
project to link without error. Tested with CMake 3.9.0 and XCode 8.3.3.
This commit is contained in:
Mike Ellery
2017-07-27 16:37:15 -07:00
committed by Nik Bougalis
parent c00341a97e
commit 65094d9c90
3 changed files with 18 additions and 10 deletions

View File

@@ -748,7 +748,7 @@ macro(link_common_libraries cur_project)
find_library(app_kit AppKit)
find_library(foundation Foundation)
target_link_libraries(${cur_project}
crypto ssl ${app_kit} ${foundation})
${app_kit} ${foundation})
else()
target_link_libraries(${cur_project} rt)
endif()