ENH: support large object file lists with incremental visual studio linking

This commit is contained in:
Bill Hoffman 2008-06-18 13:28:24 -04:00
parent 14f65b3efb
commit 101337c63e
1 changed files with 1 additions and 1 deletions

View File

@ -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;