[mac] Fixes linker error for bsdiff_tests

ld: warning: ignoring duplicate libraries: 'libbase.a'
Undefined symbols for architecture arm64:
  "_SecPKCS12Import", referenced from:
      -[MultipartUploadTask extractIdentityWithCertData:certPassword:] in libplatform.a[2](unity_0_mm.mm.o)
  "_kSecImportExportPassphrase", referenced from:
      -[MultipartUploadTask extractIdentityWithCertData:certPassword:] in libplatform.a[2](unity_0_mm.mm.o)
  "_kSecImportItemCertChain", referenced from:
      -[MultipartUploadTask extractIdentityWithCertData:certPassword:] in libplatform.a[2](unity_0_mm.mm.o)
  "_kSecImportItemIdentity", referenced from:
      -[MultipartUploadTask extractIdentityWithCertData:certPassword:] in libplatform.a[2](unity_0_mm.mm.o)
ld: symbol(s) not found for architecture arm64

Signed-off-by: Alexander Borsuk <me@alex.bio>
This commit is contained in:
Alexander Borsuk 2024-03-29 16:00:45 +01:00 committed by Viktor Havaka
parent 5670fe0ada
commit 40aad988e4

View file

@ -191,7 +191,13 @@ target_link_libraries(${PROJECT_NAME}
$<$<BOOL:${PLATFORM_DESKTOP}>:Qt6::Core>
$<$<BOOL:${PLATFORM_LINUX}>:Qt6::Network>
$<$<BOOL:${QT_POSITIONING}>:Qt6::Positioning>
$<$<BOOL:${PLATFORM_MAC}>:-framework\ Foundation -framework\ SystemConfiguration -framework\ CoreLocation -framework\ CFNetwork>
$<$<BOOL:${PLATFORM_MAC}>:
-framework\ Foundation
-framework\ SystemConfiguration
-framework\ CoreLocation
-framework\ CFNetwork
-framework\ Security # SecPKCS12Import
>
)
omim_add_test_subdirectory(platform_tests_support)