diff options
author | Brad King <brad.king@kitware.com> | 2013-03-29 18:53:36 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2013-03-29 19:00:33 (GMT) |
commit | de13d68d11b9f8f08c67b8cbcdd0f957d5bae6e1 (patch) | |
tree | fc2627f441f17a82542faef7891815732e294b76 /Tests/RunCMake/add_dependencies/NoTarget-stderr.txt | |
parent | 1f16bd24ee00bfdb5d50e24eaa46da2cdfa1b129 (diff) | |
download | CMake-de13d68d11b9f8f08c67b8cbcdd0f957d5bae6e1.zip CMake-de13d68d11b9f8f08c67b8cbcdd0f957d5bae6e1.tar.gz CMake-de13d68d11b9f8f08c67b8cbcdd0f957d5bae6e1.tar.bz2 |
add_dependencies: Distinguish target v. file dependencies in error (#14050)
When called with a non-existent LHS target name the user may be trying
to add file-level dependencies. Clarify the error message to explain
the difference between target-level and file-level dependencies. Point
the reader at the commands and options needed for the latter.
Diffstat (limited to 'Tests/RunCMake/add_dependencies/NoTarget-stderr.txt')
-rw-r--r-- | Tests/RunCMake/add_dependencies/NoTarget-stderr.txt | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Tests/RunCMake/add_dependencies/NoTarget-stderr.txt b/Tests/RunCMake/add_dependencies/NoTarget-stderr.txt new file mode 100644 index 0000000..6af2707 --- /dev/null +++ b/Tests/RunCMake/add_dependencies/NoTarget-stderr.txt @@ -0,0 +1,9 @@ +CMake Error at NoTarget.cmake:1 \(add_dependencies\): + Cannot add target-level dependencies to non-existent target "foo". + + The add_dependencies works for top-level logical targets created by the + add_executable, add_library, or add_custom_target commands. If you want to + add file-level dependencies see the DEPENDS option of the add_custom_target + and add_custom_command commands. +Call Stack \(most recent call first\): + CMakeLists.txt:3 \(include\) |