summaryrefslogtreecommitdiff
path: root/ios
diff options
context:
space:
mode:
authorJustin R. Miller <incanus@codesorcery.net>2015-11-16 11:37:18 -0800
committerJustin R. Miller <incanus@codesorcery.net>2015-11-16 11:53:00 -0800
commit42a60a6661d58ebf784407bc5bc4c0ef35179ef8 (patch)
treeff9d5e67c1f0a89e46a694ed257030497d836a80 /ios
parent212e7a1e081da35309730e6aa15a5fbe967bfeb4 (diff)
downloadqtlocation-mapboxgl-42a60a6661d58ebf784407bc5bc4c0ef35179ef8.tar.gz
static framework target for iOS
Diffstat (limited to 'ios')
-rw-r--r--ios/framework/Info.plist26
-rw-r--r--ios/framework/modulemap5
-rw-r--r--ios/framework/umbrella3
3 files changed, 34 insertions, 0 deletions
diff --git a/ios/framework/Info.plist b/ios/framework/Info.plist
new file mode 100644
index 0000000000..e94d071dad
--- /dev/null
+++ b/ios/framework/Info.plist
@@ -0,0 +1,26 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
+<plist version="1.0">
+<dict>
+ <key>CFBundleDevelopmentRegion</key>
+ <string>en</string>
+ <key>CFBundleExecutable</key>
+ <string>${EXECUTABLE_NAME}</string>
+ <key>CFBundleIdentifier</key>
+ <string>org.cocoapods.${PRODUCT_NAME:rfc1034identifier}</string>
+ <key>CFBundleInfoDictionaryVersion</key>
+ <string>6.0</string>
+ <key>CFBundleName</key>
+ <string>${PRODUCT_NAME}</string>
+ <key>CFBundlePackageType</key>
+ <string>FMWK</string>
+ <key>CFBundleShortVersionString</key>
+ <string>#####</string>
+ <key>CFBundleSignature</key>
+ <string>????</string>
+ <key>CFBundleVersion</key>
+ <string>%%%%%</string>
+ <key>NSPrincipalClass</key>
+ <string></string>
+</dict>
+</plist>
diff --git a/ios/framework/modulemap b/ios/framework/modulemap
new file mode 100644
index 0000000000..959568cb4e
--- /dev/null
+++ b/ios/framework/modulemap
@@ -0,0 +1,5 @@
+framework module Mapbox {
+ umbrella header "Mapbox.h"
+ export *
+ module * { export * }
+}
diff --git a/ios/framework/umbrella b/ios/framework/umbrella
new file mode 100644
index 0000000000..6b980d3657
--- /dev/null
+++ b/ios/framework/umbrella
@@ -0,0 +1,3 @@
+
+FOUNDATION_EXPORT double MapboxVersionNumber;
+FOUNDATION_EXPORT const unsigned char MapboxVersionString[];