summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2002-10-22 14:36:35 (GMT)
committerBill Hoffman <bill.hoffman@kitware.com>2002-10-22 14:36:35 (GMT)
commit0e8052b101e363f23e825388a083ca18a1de3383 (patch)
tree202d88841ae51ead0428cc0d516bab43ce51225e
parentb1114a344fcda35984140e0bc538d32035d5310a (diff)
downloadCMake-0e8052b101e363f23e825388a083ca18a1de3383.zip
CMake-0e8052b101e363f23e825388a083ca18a1de3383.tar.gz
CMake-0e8052b101e363f23e825388a083ca18a1de3383.tar.bz2
BUG: make sure win32 exes are win32
-rw-r--r--Source/cmLocalBorlandMakefileGenerator.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmLocalBorlandMakefileGenerator.cxx b/Source/cmLocalBorlandMakefileGenerator.cxx
index b7bb097..6e26365 100644
--- a/Source/cmLocalBorlandMakefileGenerator.cxx
+++ b/Source/cmLocalBorlandMakefileGenerator.cxx
@@ -315,7 +315,7 @@ void cmLocalBorlandMakefileGenerator::OutputExecutableRule(std::ostream& fout,
}
if(t.GetType() == cmTarget::WIN32_EXECUTABLE)
{
- command += " -tWM ";
+ command += "-tW -tWM ";
}
else
{