minor update for new custom commands

This commit is contained in:
Ken Martin 2003-06-05 14:48:44 -04:00
parent 703242071f
commit 59c70d9df7
1 changed files with 3 additions and 3 deletions

View File

@ -101,16 +101,16 @@ bool cmQTWrapUICommand::InitialPass(std::vector<std::string> const& argsIn)
{ {
headerListValue += ";"; headerListValue += ";";
} }
headerListValue += header_file.GetSourceName() + ".h"; headerListValue += header_file.GetFullPath();
// create the list of sources // create the list of sources
if (sourceListValue.size() > 0) if (sourceListValue.size() > 0)
{ {
sourceListValue += ";"; sourceListValue += ";";
} }
sourceListValue += source_file.GetSourceName() + ".cxx"; sourceListValue += source_file.GetFullPath();
sourceListValue += ";"; sourceListValue += ";";
sourceListValue += moc_file.GetSourceName() + ".cxx"; sourceListValue += moc_file.GetFullPath();
} }
} }