Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
CMake
CMake
Commits
6018c279
Commit
6018c279
authored
Mar 14, 2006
by
Brad King
💬
Browse files
BUG: Clarified confusing error message.
parent
1b6912f1
Changes
1
Hide whitespace changes
Inline
Side-by-side
Source/cmMakefile.cxx
View file @
6018c279
...
...
@@ -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
());
}
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment