diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2008-06-18 17:28:24 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2008-06-18 17:28:24 (GMT) |
commit | 101337c63ea5a3b0ceed468a7917b2a49e6eaced (patch) | |
tree | 2a3808328e5524bc23fe93d9c368efd95a97f21d /Source/cmake.cxx | |
parent | 14f65b3efb38aea41664d0a016b56e536e3bc798 (diff) | |
download | CMake-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.cxx | 2 |
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; |