Browse Source

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
tags/v1.1.90
Henrik Andersson 13 years ago
parent
commit
a7a38a6028
1 changed files with 4 additions and 1 deletions
  1. 4
    1
      CMakeLists.txt

+ 4
- 1
CMakeLists.txt View 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)

Loading…
Cancel
Save