VS10: Honor user-specified /SUBSYSTEM: flag (#14326)

Use the WIN32_EXECUTABLE target property only to set the SubSystem build
attribute default.  When user-specified flags are later parsed they may
then override it.
This commit is contained in:
Brad King 2013-07-31 10:14:33 -04:00
parent 0cecc7b485
commit b64e8f22a4
1 changed files with 2 additions and 2 deletions

View File

@ -1520,11 +1520,11 @@ cmVisualStudio10TargetGenerator::ComputeLinkOptions(std::string const& config)
} }
if ( this->Target->GetPropertyAsBool("WIN32_EXECUTABLE") ) if ( this->Target->GetPropertyAsBool("WIN32_EXECUTABLE") )
{ {
flags += " /SUBSYSTEM:WINDOWS"; linkOptions.AddFlag("SubSystem", "Windows");
} }
else else
{ {
flags += " /SUBSYSTEM:CONSOLE"; linkOptions.AddFlag("SubSystem", "Console");
} }
std::string standardLibsVar = "CMAKE_"; std::string standardLibsVar = "CMAKE_";
standardLibsVar += linkLanguage; standardLibsVar += linkLanguage;