Browse Source

ipc: only build on non-windows

ambrop7 15 năm trước cách đây
mục cha
commit
dc71e58dd3
1 tập tin đã thay đổi với 3 bổ sung1 xóa
  1. 3 1
      CMakeLists.txt

+ 3 - 1
CMakeLists.txt

@@ -82,7 +82,9 @@ add_subdirectory(predicate)
 add_subdirectory(nspr_support)
 add_subdirectory(server_connection)
 add_subdirectory(security)
-add_subdirectory(ipc)
+if (NOT WIN32)
+    add_subdirectory(ipc)
+endif ()
 
 # example programs
 add_subdirectory(examples)