aboutsummaryrefslogtreecommitdiffhomepage
path: root/README.md
diff options
context:
space:
mode:
authorGravatar Hoa V. DINH <dinh.viet.hoa@gmail.com>2013-06-18 20:28:26 -0700
committerGravatar Hoa V. DINH <dinh.viet.hoa@gmail.com>2013-06-18 20:28:26 -0700
commit74aaa9972b440891339e6ee06aeff4a13af65ebb (patch)
tree04505f4ded6e7aa81802444e5f12c3f53b5eef74 /README.md
parentb4cbcbf6ec9c8b0efd8b7ec8d61091cf508bf5f0 (diff)
Fixed formatting of README
Diffstat (limited to 'README.md')
-rw-r--r--README.md12
1 files changed, 2 insertions, 10 deletions
diff --git a/README.md b/README.md
index b374db11..464b1759 100644
--- a/README.md
+++ b/README.md
@@ -20,21 +20,13 @@ MailCore 2 provides a simple and asynchronous Objective-C API to work with the e
- In Build Phases, add a Target Dependency of `mailcore osx` (it's the one with a little toolbox icon).
* Mac static library
- Go to Build Phases from your build target, and under 'Link Binary With Libraries', add `libMailCore.a`.
- - Set 'Other Linker Flags' under Build Settings:
-```
--lctemplate -letpan -licudata -licui18n -licuuc -lxml2 -lsasl2 -liconv -ltidy
--lc++ -stdlib=libc++ -all_load
-```
+ - Set 'Other Linker Flags' under Build Settings: `-lctemplate -letpan -licudata -licui18n -licuuc -lxml2 -lsasl2 -liconv -ltidy` `-lc++ -stdlib=libc++ -all_load`
- 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`
- * Set 'Other Linker Flags':
-```
--lctemplate-ios -letpan-ios -licudata -licui18n -licuuc -lxml2 -lsasl2 -liconv -ltidy
--lstdc++ -stdlib=libstdc++ -all_load
-```
+ * Set 'Other Linker Flags': `-lctemplate-ios -letpan-ios -licudata -licui18n -licuuc -lxml2 -lsasl2 -liconv -ltidy` `-lstdc++ -stdlib=libstdc++ -all_load`
* 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`.
6. Profit.