瀏覽代碼

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 年之前
父節點
當前提交
a7a38a6028
共有 1 個文件被更改,包括 4 次插入1 次删除
  1. 4
    1
      CMakeLists.txt

+ 4
- 1
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)

Loading…
取消
儲存