From 249b76baef06b4462d88fc3080eab45ad01ebbf3 Mon Sep 17 00:00:00 2001 From: Dimitri Schoolwerth Date: Wed, 7 Jun 2017 23:38:54 +0400 Subject: [PATCH] Fix Xcode-based builds using wxSecretStore Add the Security framework which is required for linking. --- build/osx/wxcocoa.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/osx/wxcocoa.xcconfig b/build/osx/wxcocoa.xcconfig index 24c0f2d37c..4ea8ea100c 100644 --- a/build/osx/wxcocoa.xcconfig +++ b/build/osx/wxcocoa.xcconfig @@ -9,4 +9,4 @@ GCC_VERSION = ARCHS = i386 x86_64 -OTHER_LDFLAGS = -framework WebKit -framework IOKit -framework Carbon -framework Cocoa -framework AudioToolbox -framework OpenGL -framework AVFoundation -framework CoreMedia -framework QTKit +OTHER_LDFLAGS = -framework WebKit -framework IOKit -framework Carbon -framework Cocoa -framework AudioToolbox -framework OpenGL -framework AVFoundation -framework CoreMedia -framework QTKit -framework Security