소스 검색

BUG: Clarified confusing error message.

Brad King 19 년 전
부모
커밋
6018c27993
1개의 변경된 파일5개의 추가작업 그리고 1개의 파일을 삭제
  1. 5 1
      Source/cmMakefile.cxx

+ 5 - 1
Source/cmMakefile.cxx

@@ -757,7 +757,11 @@ void cmMakefile::AddLinkLibraryForTarget(const char *target,
     }
   else
     {
-    cmSystemTools::Error("Attempt to add link libraries to non-existant target: ",  target, " for lib ", lib);
+    cmOStringStream e;
+    e << "Attempt to add link library \""
+      << lib << "\" to target \""
+      << target << "\" which is not built by this project.";
+    cmSystemTools::Error(e.str().c_str());
     }
 }