]> source.dussan.org Git - tigervnc.git/commitdiff
Do not run libtool_create_control_file() on Windows. Windows does not like it.
authorDRC <dcommander@users.sourceforge.net>
Fri, 24 Jun 2011 03:51:02 +0000 (03:51 +0000)
committerDRC <dcommander@users.sourceforge.net>
Fri, 24 Jun 2011 03:51:02 +0000 (03:51 +0000)
git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@4530 3789f03b-4d11-0410-bbf8-ca57d06f2519

common/Xregion/CMakeLists.txt
common/network/CMakeLists.txt
common/rdr/CMakeLists.txt
common/rfb/CMakeLists.txt

index 4cc4f0dd8380d9e7163d39ef6539db063d125ac8..40ca97e464028d014f556052f80e5ffb5e54e551 100644 (file)
@@ -1,4 +1,6 @@
 add_library(Xregion STATIC
   Region.c)
 
-libtool_create_control_file(Xregion)
+if(UNIX)
+  libtool_create_control_file(Xregion)
+endif()
index 9f664de8c2761d7f09bc3e2cf55d2806675b3664..ddde5745d042a70d8d695ba0e001b40df45b58d1 100644 (file)
@@ -3,4 +3,6 @@ include_directories(${CMAKE_SOURCE_DIR}/common)
 add_library(network STATIC
   TcpSocket.cxx)
 
-libtool_create_control_file(network)
+if(UNIX)
+  libtool_create_control_file(network)
+endif()
index 6557932d72e3e31af787c02546db324a1813abce..ee71a9bbfd5d8559842640d854660297ba4fddc7 100644 (file)
@@ -24,4 +24,6 @@ endif()
 
 target_link_libraries(rdr ${RDR_LIBRARIES})
 
-libtool_create_control_file(rdr)
+if(UNIX)
+  libtool_create_control_file(rdr)
+endif()
index eddbaea4f6ee4d2ab95be2b8a4c202d733a0000a..c28b1ac90d0be85d1c958b3d59fcae589d110741 100644 (file)
@@ -94,4 +94,6 @@ add_library(rfb STATIC ${RFB_SOURCES})
 
 target_link_libraries(rfb ${RFB_LIBRARIES})
 
-libtool_create_control_file(rfb)
+if(UNIX)
+  libtool_create_control_file(rfb)
+endif()