fixed some compiler warnings
This commit is contained in:
parent
1dcfcc809e
commit
1ca67f200a
|
@ -41,10 +41,10 @@ void cmGlobalCodeWarriorGenerator::EnableLanguage(const char*,
|
||||||
}
|
}
|
||||||
|
|
||||||
int cmGlobalCodeWarriorGenerator::TryCompile(const char *,
|
int cmGlobalCodeWarriorGenerator::TryCompile(const char *,
|
||||||
const char *bindir,
|
const char */*bindir*/,
|
||||||
const char *projectName,
|
const char */*projectName*/,
|
||||||
const char *targetName,
|
const char */*targetName*/,
|
||||||
std::string *output)
|
std::string */*output*/)
|
||||||
{
|
{
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
|
@ -216,7 +216,7 @@ void cmLocalCodeWarriorGenerator::WriteSettingList(std::ostream& fout,
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
fout << "<SETTING><NAME>MWProject_PPC_filecreator</NAME><VALUE>????</VALUE></SETTING>\n";
|
fout << "<SETTING><NAME>MWProject_PPC_filecreator</NAME><VALUE>????" << "</VALUE></SETTING>\n";
|
||||||
fout << "<SETTING><NAME>MWProject_PPC_filetype</NAME><VALUE>APPL</VALUE></SETTING>\n";
|
fout << "<SETTING><NAME>MWProject_PPC_filetype</NAME><VALUE>APPL</VALUE></SETTING>\n";
|
||||||
fout << "<SETTING><NAME>MWProject_PPC_size</NAME><VALUE>384</VALUE></SETTING>\n";
|
fout << "<SETTING><NAME>MWProject_PPC_size</NAME><VALUE>384</VALUE></SETTING>\n";
|
||||||
fout << "<SETTING><NAME>MWProject_PPC_minsize</NAME><VALUE>384</VALUE></SETTING>\n";
|
fout << "<SETTING><NAME>MWProject_PPC_minsize</NAME><VALUE>384</VALUE></SETTING>\n";
|
||||||
|
@ -225,7 +225,7 @@ void cmLocalCodeWarriorGenerator::WriteSettingList(std::ostream& fout,
|
||||||
fout << "<SETTING><NAME>MWProject_PPC_symfilename</NAME><VALUE></VALUE></SETTING>\n";
|
fout << "<SETTING><NAME>MWProject_PPC_symfilename</NAME><VALUE></VALUE></SETTING>\n";
|
||||||
fout << "<SETTING><NAME>MWProject_PPC_rsrcname</NAME><VALUE></VALUE></SETTING>\n";
|
fout << "<SETTING><NAME>MWProject_PPC_rsrcname</NAME><VALUE></VALUE></SETTING>\n";
|
||||||
fout << "<SETTING><NAME>MWProject_PPC_rsrcheader</NAME><VALUE>Native</VALUE></SETTING>\n";
|
fout << "<SETTING><NAME>MWProject_PPC_rsrcheader</NAME><VALUE>Native</VALUE></SETTING>\n";
|
||||||
fout << "<SETTING><NAME>MWProject_PPC_rsrctype</NAME><VALUE>????</VALUE></SETTING>\n";
|
fout << "<SETTING><NAME>MWProject_PPC_rsrctype</NAME><VALUE>????" << "</VALUE></SETTING>\n";
|
||||||
fout << "<SETTING><NAME>MWProject_PPC_rsrcid</NAME><VALUE>0</VALUE></SETTING>\n";
|
fout << "<SETTING><NAME>MWProject_PPC_rsrcid</NAME><VALUE>0</VALUE></SETTING>\n";
|
||||||
fout << "<SETTING><NAME>MWProject_PPC_rsrcflags</NAME><VALUE>0</VALUE></SETTING>\n";
|
fout << "<SETTING><NAME>MWProject_PPC_rsrcflags</NAME><VALUE>0</VALUE></SETTING>\n";
|
||||||
fout << "<SETTING><NAME>MWProject_PPC_rsrcstore</NAME><VALUE>0</VALUE></SETTING>\n";
|
fout << "<SETTING><NAME>MWProject_PPC_rsrcstore</NAME><VALUE>0</VALUE></SETTING>\n";
|
||||||
|
@ -258,7 +258,7 @@ void cmLocalCodeWarriorGenerator::WriteSettingList(std::ostream& fout,
|
||||||
}
|
}
|
||||||
|
|
||||||
void cmLocalCodeWarriorGenerator::WriteFileList(std::ostream& fout,
|
void cmLocalCodeWarriorGenerator::WriteFileList(std::ostream& fout,
|
||||||
const char *tgtName,
|
const char */*tgtName*/,
|
||||||
cmTarget const *l)
|
cmTarget const *l)
|
||||||
{
|
{
|
||||||
fout << "<FILELIST>\n";
|
fout << "<FILELIST>\n";
|
||||||
|
@ -301,7 +301,7 @@ void cmLocalCodeWarriorGenerator::WriteFileList(std::ostream& fout,
|
||||||
|
|
||||||
|
|
||||||
void cmLocalCodeWarriorGenerator::WriteLinkOrder(std::ostream& fout,
|
void cmLocalCodeWarriorGenerator::WriteLinkOrder(std::ostream& fout,
|
||||||
const char *tgtName,
|
const char */*tgtName*/,
|
||||||
cmTarget const *l)
|
cmTarget const *l)
|
||||||
{
|
{
|
||||||
fout << "<LINKORDER>\n";
|
fout << "<LINKORDER>\n";
|
||||||
|
|
Loading…
Reference in New Issue