summaryrefslogtreecommitdiffstats
path: root/Tests/RunCMake/add_custom_command/TargetImported.cmake
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2016-01-28 15:12:26 (GMT)
committerBrad King <brad.king@kitware.com>2016-01-28 15:33:26 (GMT)
commitd257d68138a00758910bbca3dd77dcfcc04e65cc (patch)
tree9c0eff84d7fc1268f7f57f656a3f6e7b835b78d2 /Tests/RunCMake/add_custom_command/TargetImported.cmake
parent4d53e0a75e3ccddf14f556e88302573f14aa8830 (diff)
downloadCMake-d257d68138a00758910bbca3dd77dcfcc04e65cc.zip
CMake-d257d68138a00758910bbca3dd77dcfcc04e65cc.tar.gz
CMake-d257d68138a00758910bbca3dd77dcfcc04e65cc.tar.bz2
add_custom_command: Clarify error when TARGET is out of scope (#15681)
The add_custom_command(TARGET) signature only works for targets defined in the current directory. Clarify this in the error message when the target exists but was defined elsewhere. Inspired-by: Bartosz Kosiorek <gang65@poczta.onet.pl>
Diffstat (limited to 'Tests/RunCMake/add_custom_command/TargetImported.cmake')
-rw-r--r--Tests/RunCMake/add_custom_command/TargetImported.cmake2
1 files changed, 2 insertions, 0 deletions
diff --git a/Tests/RunCMake/add_custom_command/TargetImported.cmake b/Tests/RunCMake/add_custom_command/TargetImported.cmake
new file mode 100644
index 0000000..c0f2d66
--- /dev/null
+++ b/Tests/RunCMake/add_custom_command/TargetImported.cmake
@@ -0,0 +1,2 @@
+add_library(TargetImported UNKNOWN IMPORTED)
+add_custom_command(TARGET TargetImported COMMAND ${CMAKE_COMMAND} -E echo tada)