From f7a605de495d575d536bdb34dd5a362c3edaa860 Mon Sep 17 00:00:00 2001 From: Nick Forge Date: Thu, 27 Mar 2014 22:07:03 +1100 Subject: [PATCH] Updated installation instructions in README --- README.md | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index d9df3a7..f96a038 100644 --- a/README.md +++ b/README.md @@ -5,16 +5,19 @@ LIFXKit is the LIFX SDK for Objective-C. LIFXKit currently supports iOS. OS X su ## Installation ### CocoaPods Installation -LIFXKit will be published in the public CocoaPod Specs repo shortly. Until then, you can use LIFXKit with CocoaPods by add the following to your Podfile: +To use LIFXKit with CocoaPods, simply add the following to your Podfile: - pod 'LIFXKit', :git => 'https://github.com/LIFX/LIFXKit.git', :tag => 'v0.5' +```ruby +pod 'LIFXKit' +``` ### Xcode Sub-Project Installation -1. Drag `LIFXKit.xcodeproj` into your Xcode project as a sub-project. Go to the Products source group within the LIFXKit sub-project, then drag `libLIFXKit.a` into your App Target's Linked Frameworks and Libraries list. -2. Configure your Target to link against the follow system Frameworks/Libraries: +1. Drag `LIFXKit.xcodeproj` into your Xcode project as a sub-project. +2. Go to the Products source group within the LIFXKit sub-project then drag `libLIFXKit.a` into your App Target's Linked Frameworks and Libraries list. +3. Configure your App Target to link against the follow system Frameworks/Libraries: - `SystemConfiguration.framework` - `libz.dylib` -3. Ensure that your target is configured to link against categories from static libraries correctly. To do this, ensure that the `Other Linker Flags` Build Settings for your app target contains `-ObjC`. +4. Ensure that your target is configured to link against categories from static libraries correctly. To do this, ensure that the `Other Linker Flags` Build Settings for your app target contains `-ObjC`. Once you've configured your Xcode project with either method, add `#import ` to your source files and start hacking away!