From 0e8052b101e363f23e825388a083ca18a1de3383 Mon Sep 17 00:00:00 2001 From: Bill Hoffman Date: Tue, 22 Oct 2002 10:36:35 -0400 Subject: [PATCH] BUG: make sure win32 exes are win32 --- Source/cmLocalBorlandMakefileGenerator.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/cmLocalBorlandMakefileGenerator.cxx b/Source/cmLocalBorlandMakefileGenerator.cxx index b7bb09730..6e263651b 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 {