[cmake-commits] king committed cmGlobalXCodeGenerator.cxx 1.172 1.173

cmake-commits at cmake.org cmake-commits at cmake.org
Sat Dec 22 14:17:09 EST 2007


Update of /cvsroot/CMake/CMake/Source
In directory public:/mounts/ram/cvs-serv13697/Source

Modified Files:
	cmGlobalXCodeGenerator.cxx 
Log Message:
ENH: Simplify target-level dependencies by depending only on directly linked targets instead of those chained.


Index: cmGlobalXCodeGenerator.cxx
===================================================================
RCS file: /cvsroot/CMake/CMake/Source/cmGlobalXCodeGenerator.cxx,v
retrieving revision 1.172
retrieving revision 1.173
diff -u -d -r1.172 -r1.173
--- cmGlobalXCodeGenerator.cxx	21 Dec 2007 20:04:06 -0000	1.172
+++ cmGlobalXCodeGenerator.cxx	22 Dec 2007 19:17:07 -0000	1.173
@@ -2015,7 +2015,7 @@
 
   // Loop over all library dependencies.
   const cmTarget::LinkLibraryVectorType& tlibs = 
-    cmtarget->GetLinkLibraries();
+    cmtarget->GetOriginalLinkLibraries();
   for(cmTarget::LinkLibraryVectorType::const_iterator lib = tlibs.begin();
       lib != tlibs.end(); ++lib)
     {



More information about the Cmake-commits mailing list