소스 검색

minor update for new custom commands

Ken Martin 22 년 전
부모
커밋
59c70d9df7
1개의 변경된 파일3개의 추가작업 그리고 3개의 파일을 삭제
  1. 3 3
      Source/cmQTWrapUICommand.cxx

+ 3 - 3
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();
       }
     }