CMake: fix zlib include dir

ZLIB_INCLUDE_DIR was interpreted as a relative path from the
working directory.
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 908f7a4..4699a71 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -41,7 +41,7 @@
   find_package(ZLIB)
 
   if(ZLIB_FOUND)
-    include_directories(ZLIB_INCLUDE_DIR)
+    include_directories(${ZLIB_INCLUDE_DIR})
   endif(ZLIB_FOUND)
 endif(ENABLE_ZLIB_SUPPORT)