From 719eb543a8d08c4f536ea7933ffb3af0a8553e87 Mon Sep 17 00:00:00 2001 From: Chris Ballinger Date: Fri, 8 Apr 2016 17:24:41 -0700 Subject: Xcode, podspec, wrapper --- xcode/Podfile | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 xcode/Podfile (limited to 'xcode/Podfile') diff --git a/xcode/Podfile b/xcode/Podfile new file mode 100644 index 0000000..7bd8189 --- /dev/null +++ b/xcode/Podfile @@ -0,0 +1,6 @@ +# Uncomment this line to define a global platform for your project +platform :ios, '8.0' +# Uncomment this line if you're using Swift +use_frameworks! + +pod 'olm', :path => '../olm.podspec' \ No newline at end of file -- cgit v1.2.3 From 6f113dd7b3b4de918c4efb81d38a1ffe1d391b5b Mon Sep 17 00:00:00 2001 From: manuroe Date: Tue, 27 Sep 2016 11:57:29 +0200 Subject: OLMKit: Make the project build Make OLMKit CocoaPods expose the obj-c wrapper of libolm --- xcode/Podfile | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) (limited to 'xcode/Podfile') diff --git a/xcode/Podfile b/xcode/Podfile index 7bd8189..4c60dd3 100644 --- a/xcode/Podfile +++ b/xcode/Podfile @@ -1,6 +1,7 @@ -# Uncomment this line to define a global platform for your project -platform :ios, '8.0' -# Uncomment this line if you're using Swift -use_frameworks! +target "OLMKit" do +pod 'OLMKit', :path => '../OLMKit.podspec' +end -pod 'olm', :path => '../olm.podspec' \ No newline at end of file +target "OLMKitTests" do +pod 'OLMKit', :path => '../OLMKit.podspec' +end \ No newline at end of file -- cgit v1.2.3