mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 10:04:49 +00:00
add a more descriptive message about the state of the MSVC backend
svn path=/trunk/; revision=17455
This commit is contained in:
parent
fb2f0898bf
commit
ceef1f78ae
1 changed files with 2 additions and 47 deletions
|
@ -82,39 +82,6 @@ void MSVCBackend::Process()
|
|||
m_devFile << " EndGlobalSection" << endl;
|
||||
m_devFile << "EndGlobal" << endl;
|
||||
|
||||
#if 0
|
||||
m_devFile << "[Project]" << endl;
|
||||
|
||||
m_devFile << "FileName=" << filename << endl
|
||||
<< "Name=" << ProjectNode.name << endl
|
||||
<< "UnitCount=" << m_unitCount << endl
|
||||
<< "Type=1" << endl
|
||||
<< "Ver=1" << endl
|
||||
<< "ObjFiles=" << endl
|
||||
<< "Includes=" << endl
|
||||
<< "Libs=" << endl
|
||||
<< "PrivateResource=" << endl
|
||||
<< "ResourceIncludes=" << endl
|
||||
<< "MakeIncludes=" << endl
|
||||
<< "Compiler=" << endl
|
||||
<< "CppCompiler=" << endl
|
||||
<< "Linker=" << endl
|
||||
<< "IsCpp=1" << endl
|
||||
<< "Icon=" << endl
|
||||
<< "ExeOutput=" << endl
|
||||
<< "ObjectOutput=" << endl
|
||||
<< "OverrideOutput=0" << endl
|
||||
<< "OverrideOutputName=" << endl
|
||||
<< "HostApplication=" << endl
|
||||
<< "CommandLine=" << endl
|
||||
<< "UseCustomMakefile=1" << endl
|
||||
<< "CustomMakefile=" << ProjectNode.makefile << endl
|
||||
<< "IncludeVersionInto=0" << endl
|
||||
<< "SupportXPThemes=0" << endl
|
||||
<< "CompilerSet=0" << endl
|
||||
<< "CompilerSettings=0000000000000000000000" << endl;
|
||||
#endif
|
||||
|
||||
OutputFolders();
|
||||
|
||||
m_devFile << endl << endl;
|
||||
|
@ -123,23 +90,11 @@ void MSVCBackend::Process()
|
|||
|
||||
m_devFile.close();
|
||||
|
||||
// Dev-C++ needs a makefile, so use the MinGW backend to create one.
|
||||
// The MSVC build still needs the mingw backend.
|
||||
|
||||
cout << "Creating Makefile: " << ProjectNode.makefile << endl;
|
||||
|
||||
Backend *backend = Backend::Factory::Create("mingw",
|
||||
ProjectNode,
|
||||
configuration );
|
||||
backend->Process();
|
||||
delete backend;
|
||||
|
||||
cout << "Done." << endl << endl;
|
||||
|
||||
cout << "You may want to disable Class browsing (see below) before you open this project in Dev-C++, as the "
|
||||
<< "parsing required for large projects can take quite awhile."
|
||||
<< endl << endl
|
||||
<< "(Tools->Editor Options->Class browsing->Enable class browsing check box)"
|
||||
<< endl << endl;
|
||||
cout << "Don't expect the MSVC backend to work yet. "<< endl << endl;
|
||||
}
|
||||
|
||||
void MSVCBackend::ProcessModules()
|
||||
|
|
Loading…
Reference in a new issue