summaryrefslogtreecommitdiffstats
path: root/Tests/RunCMake/set_property/LINK_LIBRARIES.cmake
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/RunCMake/set_property/LINK_LIBRARIES.cmake')
-rw-r--r--Tests/RunCMake/set_property/LINK_LIBRARIES.cmake7
1 files changed, 7 insertions, 0 deletions
diff --git a/Tests/RunCMake/set_property/LINK_LIBRARIES.cmake b/Tests/RunCMake/set_property/LINK_LIBRARIES.cmake
new file mode 100644
index 0000000..994e874
--- /dev/null
+++ b/Tests/RunCMake/set_property/LINK_LIBRARIES.cmake
@@ -0,0 +1,7 @@
+add_custom_target(CustomTarget)
+set_property(TARGET CustomTarget PROPERTY LINK_LIBRARIES)
+set_property(TARGET CustomTarget APPEND PROPERTY LINK_LIBRARIES)
+get_property(val TARGET CustomTarget PROPERTY LINK_LIBRARIES)
+if (NOT "${val}" STREQUAL "")
+ message(FATAL_ERROR "LINK_LIBRARIES value is '${val}' but should be ''")
+endif()