From 101337c63ea5a3b0ceed468a7917b2a49e6eaced Mon Sep 17 00:00:00 2001 From: Bill Hoffman Date: Wed, 18 Jun 2008 13:28:24 -0400 Subject: ENH: support large object file lists with incremental visual studio linking --- Source/cmake.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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& 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; -- cgit v0.12