aboutsummaryrefslogtreecommitdiffhomepage
path: root/README.md
diff options
context:
space:
mode:
authorGravatar Hoa V. DINH <dinh.viet.hoa@gmail.com>2013-08-01 22:49:53 -0700
committerGravatar Hoa V. DINH <dinh.viet.hoa@gmail.com>2013-08-01 22:52:01 -0700
commitc478239e9c57e0ff1752b8fb1f597c716e470023 (patch)
tree487221e55fd79c41fedf1da150a80a1a5dba5ba2 /README.md
parentefdeb8e6efe898217291d69dd8a26fe0645d5ac0 (diff)
Updated README
Diffstat (limited to 'README.md')
-rw-r--r--README.md5
1 files changed, 3 insertions, 2 deletions
diff --git a/README.md b/README.md
index 50f59958..b997a47c 100644
--- a/README.md
+++ b/README.md
@@ -18,20 +18,21 @@ MailCore 2 provides a simple and asynchronous Objective-C API to work with the e
3. Under the `build-mac` directory, locate the `mailcore2.xcodeproj` file, and drag this into your Xcode project.
4. **For Mac** - If you're building for Mac, you can either link against MailCore 2 as a framework, or as a static library:
* Mac framework
- - Go to Build Phases from your build target, and under 'Link Binary With Libraries', add `MailCore.framework`.
+ - Go to Build Phases from your build target, and under 'Link Binary With Libraries', add `MailCore.framework` and `Security.framework`.
- Make sure to use LLVM C++ standard library. Open Build Settings, scroll down to 'C++ Standard Library', and select `libc++`.
- In Build Phases, add a Target Dependency of `mailcore osx` (it's the one with a little toolbox icon).
- Goto `Editor > Add Build Phase > Copy Files`.
- Expand the newly created Build Phase and change it's destination to "Frameworks".
- Click the `+` icon and select `MailCore.framework`.
* Mac static library
- - Go to Build Phases from your build target, and under 'Link Binary With Libraries', add `libMailCore.a`.
+ - Go to Build Phases from your build target, and under 'Link Binary With Libraries', add `libMailCore.a` and `Security.framework`.
- Set 'Other Linker Flags' under Build Settings: `-lctemplate -letpan -licudata -licui18n -licuuc -lxml2 -lsasl2 -liconv -ltidy -lz` `-lc++ -stdlib=libc++ -ObjC`
- Make sure to use LLVM C++ standard library. In Build Settings, locate 'C++ Standard Library', and select `libc++`.
- In Build Phases, add a Target Dependency of `static mailcore2 osx`.
5. **For iOS** - If you're targeting iOS, you have to link against MailCore 2 as a static library:
* Add `libMailCore-ios.a`
* Add `CFNetwork.framework`
+ * Add `Security.framework`
* Set 'Other Linker Flags': `-lctemplate-ios -letpan-ios -licudata -licui18n -licuuc -lxml2 -lsasl2 -liconv -ltidy -lz` `-lstdc++ -stdlib=libstdc++ -ObjC`
* Make sure to use GNU C++ standard library. In Build Settings, locate 'C++ Standard Library', and select `libstdc++`.
* In Build Phases, add a Target Dependency of `static mailcore2 ios`.