diff options
author | Ken Martin <ken.martin@kitware.com> | 2003-06-05 18:48:44 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2003-06-05 18:48:44 (GMT) |
commit | 59c70d9df7539c185a3321e4aec3a77adc3cf83b (patch) | |
tree | 95662da9a30d997ea36fc7db52b4ca02922bfebe /Source/cmQTWrapUICommand.cxx | |
parent | 703242071f022b211253c68e434ec20e0c58e637 (diff) | |
download | CMake-59c70d9df7539c185a3321e4aec3a77adc3cf83b.zip CMake-59c70d9df7539c185a3321e4aec3a77adc3cf83b.tar.gz CMake-59c70d9df7539c185a3321e4aec3a77adc3cf83b.tar.bz2 |
minor update for new custom commands
Diffstat (limited to 'Source/cmQTWrapUICommand.cxx')
-rw-r--r-- | Source/cmQTWrapUICommand.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/cmQTWrapUICommand.cxx b/Source/cmQTWrapUICommand.cxx index 938c158..6a6d902 100644 --- a/Source/cmQTWrapUICommand.cxx +++ b/Source/cmQTWrapUICommand.cxx @@ -101,16 +101,16 @@ bool cmQTWrapUICommand::InitialPass(std::vector<std::string> const& argsIn) { headerListValue += ";"; } - headerListValue += header_file.GetSourceName() + ".h"; + headerListValue += header_file.GetFullPath(); // create the list of sources if (sourceListValue.size() > 0) { sourceListValue += ";"; } - sourceListValue += source_file.GetSourceName() + ".cxx"; + sourceListValue += source_file.GetFullPath(); sourceListValue += ";"; - sourceListValue += moc_file.GetSourceName() + ".cxx"; + sourceListValue += moc_file.GetFullPath(); } } |