]> source.dussan.org Git - tigervnc.git/commitdiff
Exclude unix directory from compile on Apple platform,
authorHenrik Andersson <henrik.andersson@cendio.com>
Fri, 10 Jun 2011 13:05:09 +0000 (13:05 +0000)
committerHenrik Andersson <henrik.andersson@cendio.com>
Fri, 10 Jun 2011 13:05:09 +0000 (13:05 +0000)
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

CMakeLists.txt

index 6fc3514de10f8b9b04287c3f9004c33064f19fb5..0577804c255c8bbce6d37c1dfb61523036f984d7 100644 (file)
@@ -282,7 +282,10 @@ add_subdirectory(common)
 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)