summaryrefslogtreecommitdiffstats
path: root/Source/cmake.cxx
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2008-06-18 17:28:24 (GMT)
committerBill Hoffman <bill.hoffman@kitware.com>2008-06-18 17:28:24 (GMT)
commit101337c63ea5a3b0ceed468a7917b2a49e6eaced (patch)
tree2a3808328e5524bc23fe93d9c368efd95a97f21d /Source/cmake.cxx
parent14f65b3efb38aea41664d0a016b56e536e3bc798 (diff)
downloadCMake-101337c63ea5a3b0ceed468a7917b2a49e6eaced.zip
CMake-101337c63ea5a3b0ceed468a7917b2a49e6eaced.tar.gz
CMake-101337c63ea5a3b0ceed468a7917b2a49e6eaced.tar.bz2
ENH: support large object file lists with incremental visual studio linking
Diffstat (limited to 'Source/cmake.cxx')
-rw-r--r--Source/cmake.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmake.cxx b/Source/cmake.cxx
index cbb8ba7..0a58904 100644
--- a/Source/cmake.cxx
+++ b/Source/cmake.cxx
@@ -3875,7 +3875,7 @@ int cmake::VisualStudioLink(std::vector<std::string>& args, int type)
i != args.end(); ++i)
{
// check for nmake temporary files
- if((*i)[0] == '@')
+ if((*i)[0] == '@' && i->find("@CMakeFiles") != 0 )
{
std::ifstream fin(i->substr(1).c_str());
std::string line;