VS: Specify WinCE subsystems correctly in VS 9 2008

This commit is contained in:
Mark Salisbury 2013-02-13 09:48:32 -07:00 committed by Brad King
parent 8f4cae7aa6
commit cf82d1e166
1 changed files with 17 additions and 3 deletions

View File

@ -1136,7 +1136,14 @@ void cmLocalVisualStudio7Generator::OutputBuildTool(std::ostream& fout,
} }
if(this->WindowsCEProject) if(this->WindowsCEProject)
{ {
fout << "\t\t\t\tSubSystem=\"9\"\n"; if(this->GetVersion() < VS9)
{
fout << "\t\t\t\tSubSystem=\"9\"\n";
}
else
{
fout << "\t\t\t\tSubSystem=\"8\"\n";
}
} }
std::string stackVar = "CMAKE_"; std::string stackVar = "CMAKE_";
stackVar += linkLanguage; stackVar += linkLanguage;
@ -1227,8 +1234,15 @@ void cmLocalVisualStudio7Generator::OutputBuildTool(std::ostream& fout,
} }
if ( this->WindowsCEProject ) if ( this->WindowsCEProject )
{ {
fout << "\t\t\t\tSubSystem=\"9\"\n" if(this->GetVersion() < VS9)
<< "\t\t\t\tEntryPointSymbol=\"" {
fout << "\t\t\t\tSubSystem=\"9\"\n";
}
else
{
fout << "\t\t\t\tSubSystem=\"8\"\n";
}
fout << "\t\t\t\tEntryPointSymbol=\""
<< (isWin32Executable ? "WinMainCRTStartup" : "mainACRTStartup") << (isWin32Executable ? "WinMainCRTStartup" : "mainACRTStartup")
<< "\"\n"; << "\"\n";
} }