From 728847329c09daa7e6754f4a6445a73be82ed616 Mon Sep 17 00:00:00 2001 From: "Justin R. Miller" Date: Mon, 16 Nov 2015 16:25:56 -0800 Subject: [PATCH] refs #3045: implicitly link dependencies for framework [skip ci] --- ios/framework/modulemap | 3 +++ ios/framework/umbrella | 6 ++++++ 2 files changed, 9 insertions(+) diff --git a/ios/framework/modulemap b/ios/framework/modulemap index 959568cb4e9..122db0c2b10 100644 --- a/ios/framework/modulemap +++ b/ios/framework/modulemap @@ -2,4 +2,7 @@ framework module Mapbox { umbrella header "Mapbox.h" export * module * { export * } + link "c++" + link "sqlite3" + link "z" } diff --git a/ios/framework/umbrella b/ios/framework/umbrella index 6b980d3657d..9c04d5c7525 100644 --- a/ios/framework/umbrella +++ b/ios/framework/umbrella @@ -1,3 +1,9 @@ +#import +#import +#import +#import +#import + FOUNDATION_EXPORT double MapboxVersionNumber; FOUNDATION_EXPORT const unsigned char MapboxVersionString[];