diff options
author | Henrik Andersson <henrik.andersson@cendio.com> | 2011-06-10 13:05:09 +0000 |
---|---|---|
committer | Henrik Andersson <henrik.andersson@cendio.com> | 2011-06-10 13:05:09 +0000 |
commit | a7a38a6028178b80ba7d2a61b683a81ef3a45e8b (patch) | |
tree | 56c59e6d62c1d6cf4babae48d2524f5dba5996b3 | |
parent | f7ed1f6128fc3d9f576b606a9e5cd233b628473d (diff) | |
download | tigervnc-a7a38a6028178b80ba7d2a61b683a81ef3a45e8b.tar.gz tigervnc-a7a38a6028178b80ba7d2a61b683a81ef3a45e8b.zip |
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
-rw-r--r-- | CMakeLists.txt | 5 |
1 files changed, 4 insertions, 1 deletions
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) |