summaryrefslogtreecommitdiffstats
path: root/Source
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2010-12-14 19:38:27 (GMT)
committerCMake Topic Stage <kwrobot@kitware.com>2010-12-14 19:38:27 (GMT)
commit5bea0917ef53ccb3eb5cca40b3900668161cf5e7 (patch)
treef553f81cdfe98e4a1e87d9b18bd19119f1f933e2 /Source
parentb3f2d19ba763401f7c940d9c9f289d5d74422fe1 (diff)
parentcddcad51020d42bbc321f45507a4649b1842aba4 (diff)
downloadCMake-5bea0917ef53ccb3eb5cca40b3900668161cf5e7.zip
CMake-5bea0917ef53ccb3eb5cca40b3900668161cf5e7.tar.gz
CMake-5bea0917ef53ccb3eb5cca40b3900668161cf5e7.tar.bz2
Merge topic 'fix_incremental_vs2010'
cddcad5 Fix incremental linking for VS2010 with nmake or make.
Diffstat (limited to 'Source')
-rw-r--r--Source/cmake.cxx4
1 files changed, 4 insertions, 0 deletions
diff --git a/Source/cmake.cxx b/Source/cmake.cxx
index ddfdc24..1b49837 100644
--- a/Source/cmake.cxx
+++ b/Source/cmake.cxx
@@ -3815,6 +3815,10 @@ int cmake::VisualStudioLink(std::vector<std::string>& args, int type)
{
hasIncremental = true;
}
+ if(cmSystemTools::Strucmp(i->c_str(), "/INCREMENTAL") == 0)
+ {
+ hasIncremental = true;
+ }
if(cmSystemTools::Strucmp(i->c_str(), "/MANIFEST:NO") == 0)
{
hasManifest = false;