Exclude unix directory from compile on Apple platform,
no use for x server realted tools on this platform.

--Thiline, and those below, will be ignored--

M    CMakeLists.txt


git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@4490 3789f03b-4d11-0410-bbf8-ca57d06f2519
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 6fc3514..0577804 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -282,7 +282,10 @@
 if(WIN32)
   add_subdirectory(win)
 else()
-  add_subdirectory(unix)
+  # No interest in building x related parts on Apple
+  if(NOT APPLE)
+    add_subdirectory(unix)
+  endif()
 endif()
 
 if(BUILD_NEW_VNCVIEWER)