Renamed gccxml input/output files to drop _tcl qualification.

This commit is contained in:
Brad King 2001-05-17 11:22:11 -04:00
parent 7514adc9a3
commit 4d86b681de
1 changed files with 2 additions and 2 deletions

View File

@ -186,8 +186,8 @@ void cmCableWrapTclCommand::GenerateCableClassFiles(const char* name,
std::string className = name;
std::string groupName = m_TargetName+"_"+indexStr;
std::string classConfigName = outDir+"/Tcl/"+groupName+"_config_tcl.xml";
std::string classCxxName = outDir+"/Tcl/"+groupName+"_cxx_tcl.cxx";
std::string classXmlName = outDir+"/Tcl/"+groupName+"_cxx_tcl.xml";
std::string classCxxName = outDir+"/Tcl/"+groupName+"_cxx.cxx";
std::string classXmlName = outDir+"/Tcl/"+groupName+"_cxx.xml";
std::string classTclName = outDir+"/Tcl/"+groupName+"_tcl";
cmGeneratedFileStream classConfig(classConfigName.c_str());