added some verbosity

standardized back on printf from cout
fixed loop variable conflict

svn path=/trunk/; revision=17518
This commit is contained in:
Royce Mitchell III 2005-08-24 20:06:54 +00:00
parent 86018cbc02
commit a2e91278b6
2 changed files with 6 additions and 5 deletions

View file

@ -61,7 +61,7 @@ void MSVCBackend::Process()
string filename = ProjectNode.name + ".dsw";
cout << "Creating MSVC project: " << filename << endl;
printf ( "Creating MSVC workspace: %s\n", filename.c_str() );
ProcessModules();
@ -69,7 +69,7 @@ void MSVCBackend::Process()
if ( !m_dswFile )
{
cout << "Could not open file." << endl;
printf ( "Could not create file '%s'.\n", filename.c_str() );
return;
}
_generate_wine_dsw ( m_dswFile );
@ -101,7 +101,7 @@ void MSVCBackend::Process()
// The MSVC build still needs the mingw backend.
//ProcessModules();
cout << "Done." << endl << endl;
printf ( "Done.\n" );
/*cout << "Don't expect the MSVC backend to work yet. "<< endl << endl;

View file

@ -20,6 +20,7 @@ MSVCBackend::_generate_dsp ( const Module& module )
const bool wine = false;
string dsp_file = DspFileName(module);
printf ( "Creating MSVC project: '%s'\n", dsp_file.c_str() );
FILE* OUT = fopen ( dsp_file.c_str(), "w" );
vector<string> imports;
@ -553,9 +554,9 @@ MSVCBackend::_generate_dsp ( const Module& module )
fprintf ( OUT, "\n" );
fprintf ( OUT, "# PROP Default_Filter \"cpp;c;cxx;rc;def;r;odl;idl;hpj;bat\"\n" );
for ( i = 0; i < source_files.size(); i++ )
for ( size_t isrcfile = 0; isrcfile < source_files.size(); isrcfile++ )
{
string source_file = DosSeparator(source_files[i]);
string source_file = DosSeparator(source_files[isrcfile]);
if ( strncmp ( source_file.c_str(), ".\\", 2 ) )
{