1
0
Эх сурвалжийг харах

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

Bill Hoffman 17 жил өмнө
parent
commit
101337c63e
1 өөрчлөгдсөн 1 нэмэгдсэн , 1 устгасан
  1. 1 1
      Source/cmake.cxx

+ 1 - 1
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;