[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]

[vidalia-svn] r3835: src/torcontrol and src/common only depend on a subset of the (in vidalia/branches/breakpad/src: common torcontrol)



Author: edmanm
Date: 2009-06-11 01:16:40 -0400 (Thu, 11 Jun 2009)
New Revision: 3835

Modified:
   vidalia/branches/breakpad/src/common/CMakeLists.txt
   vidalia/branches/breakpad/src/torcontrol/CMakeLists.txt
Log:

src/torcontrol and src/common only depend on a subset of the libraries
listed in ${QT_LIBRARIES}. It doesn't hurt having all of them there, but it's
a little silly.


Modified: vidalia/branches/breakpad/src/common/CMakeLists.txt
===================================================================
--- vidalia/branches/breakpad/src/common/CMakeLists.txt	2009-06-11 00:18:21 UTC (rev 3834)
+++ vidalia/branches/breakpad/src/common/CMakeLists.txt	2009-06-11 05:16:40 UTC (rev 3835)
@@ -42,7 +42,10 @@
 
 
 add_library(common STATIC ${common_SRCS})
-target_link_libraries(common ${QT_LIBRARIES})
+target_link_libraries(common
+  ${QT_QTCORE_LIBRARY}
+  ${QT_QTNETWORK_LIBRARY}
+)
 
 if(USE_QSSLSOCKET AND OPENSSL_LIBRARIES)
   target_link_libraries(common ${OPENSSL_LIBRARIES})

Modified: vidalia/branches/breakpad/src/torcontrol/CMakeLists.txt
===================================================================
--- vidalia/branches/breakpad/src/torcontrol/CMakeLists.txt	2009-06-11 00:18:21 UTC (rev 3834)
+++ vidalia/branches/breakpad/src/torcontrol/CMakeLists.txt	2009-06-11 05:16:40 UTC (rev 3835)
@@ -57,5 +57,9 @@
 
 
 add_library(torcontrol STATIC  ${torcontrol_SRCS})
-target_link_libraries(torcontrol ${QT_LIBRARIES} common)
+target_link_libraries(torcontrol
+  ${QT_QTCORE_LIBRARY}
+  ${QT_QTNETWORK_LIBRARY}
+  common
+)