From 3d5fd0b8281a7224c057deb2d17709b5bea64836 Mon Sep 17 00:00:00 2001 From: Pierre-Olivier Latour Date: Tue, 12 May 2015 17:46:55 -0700 Subject: [PATCH] Update README.md --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index 4836ece..885b354 100644 --- a/README.md +++ b/README.md @@ -61,6 +61,8 @@ Hello World These code snippets show how to implement a custom HTTP server that runs on port 8080 and returns a "Hello World" HTML page to any request. Since GCDWebServer uses GCD blocks to handle requests, no subclassing or delegates are needed, which results in very clean code. +**IMPORTANT:** If not using CocoaPods, be sure to add the `libz` shared system library to the Xcode target for your app. + **OS X version (command line tool):** ```objectivec #import "GCDWebServer.h" @@ -213,6 +215,7 @@ Serving a Static Website GCDWebServer includes a built-in handler that can recursively serve a directory (it also lets you control how the ["Cache-Control"](http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.9) header should be set): +**OS X version (command line tool):** ```objectivec #import "GCDWebServer.h"