diff options
author | Brad King <brad.king@kitware.com> | 2016-09-05 13:04:30 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2016-09-05 13:06:00 (GMT) |
commit | f6fd0abc5bbfa7d677cd090ba8e2894d96afdde8 (patch) | |
tree | 2deeea75b706ea1103e1903c228e155978975c26 /Tests/RunCMake/GeneratorExpression/LINK_ONLY-not-linking.cmake | |
parent | f6428725bb0ae7e64866e3eca16a5ad8f007f916 (diff) | |
download | CMake-f6fd0abc5bbfa7d677cd090ba8e2894d96afdde8.zip CMake-f6fd0abc5bbfa7d677cd090ba8e2894d96afdde8.tar.gz CMake-f6fd0abc5bbfa7d677cd090ba8e2894d96afdde8.tar.bz2 |
Genex: Diagnose invalid LINK_ONLY usage instead of crashing
When `$<LINK_ONLY:...>` is used outside of linking we may evaluate it
without a `dagChecker`. Do not dereference the NULL pointer and issue a
diagnostic instead.
Closes: #16287
Diffstat (limited to 'Tests/RunCMake/GeneratorExpression/LINK_ONLY-not-linking.cmake')
-rw-r--r-- | Tests/RunCMake/GeneratorExpression/LINK_ONLY-not-linking.cmake | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Tests/RunCMake/GeneratorExpression/LINK_ONLY-not-linking.cmake b/Tests/RunCMake/GeneratorExpression/LINK_ONLY-not-linking.cmake new file mode 100644 index 0000000..16db0a2 --- /dev/null +++ b/Tests/RunCMake/GeneratorExpression/LINK_ONLY-not-linking.cmake @@ -0,0 +1 @@ +add_custom_target(Custom ALL COMMAND ${CMAKE_COMMAND} -E echo $<LINK_ONLY:something>) |