summaryrefslogtreecommitdiffstats
path: root/Source
diff options
context:
space:
mode:
authorAndy Cedilnik <andy.cedilnik@kitware.com>2002-09-23 16:23:06 (GMT)
committerAndy Cedilnik <andy.cedilnik@kitware.com>2002-09-23 16:23:06 (GMT)
commit6a096be9246436118fdc40a997d21544388457ad (patch)
treefbb0d92fd23653ee8284df55c4c307bd6a498b16 /Source
parente6406f681de91c0a39478a6e42fb43787bea077b (diff)
downloadCMake-6a096be9246436118fdc40a997d21544388457ad.zip
CMake-6a096be9246436118fdc40a997d21544388457ad.tar.gz
CMake-6a096be9246436118fdc40a997d21544388457ad.tar.bz2
Try to fix borland and nmake try compile
Diffstat (limited to 'Source')
-rw-r--r--Source/cmGlobalGenerator.cxx3
1 files changed, 3 insertions, 0 deletions
diff --git a/Source/cmGlobalGenerator.cxx b/Source/cmGlobalGenerator.cxx
index 9a46ab0..437ab70 100644
--- a/Source/cmGlobalGenerator.cxx
+++ b/Source/cmGlobalGenerator.cxx
@@ -166,6 +166,9 @@ int cmGlobalGenerator::TryCompile(const char *, const char *bindir,
{
makeCommand += " ";
makeCommand += target;
+#ifdef WIN32
+ makeCommand += ".exe";
+#endif // WIN32
}
else
{