diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2002-10-22 14:36:35 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2002-10-22 14:36:35 (GMT) |
commit | 0e8052b101e363f23e825388a083ca18a1de3383 (patch) | |
tree | 202d88841ae51ead0428cc0d516bab43ce51225e | |
parent | b1114a344fcda35984140e0bc538d32035d5310a (diff) | |
download | CMake-0e8052b101e363f23e825388a083ca18a1de3383.zip CMake-0e8052b101e363f23e825388a083ca18a1de3383.tar.gz CMake-0e8052b101e363f23e825388a083ca18a1de3383.tar.bz2 |
BUG: make sure win32 exes are win32
-rw-r--r-- | Source/cmLocalBorlandMakefileGenerator.cxx | 2 |
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 { |