From a7a38a6028178b80ba7d2a61b683a81ef3a45e8b Mon Sep 17 00:00:00 2001 From: Henrik Andersson Date: Fri, 10 Jun 2011 13:05:09 +0000 Subject: [PATCH] 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 --- CMakeLists.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6fc3514d..0577804c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -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) -- 2.39.5