summaryrefslogtreecommitdiffstats
path: root/Tests/BuildDepends
diff options
context:
space:
mode:
authorMarc Chevrier <marc.chevrier@gmail.com>2018-06-27 16:36:47 (GMT)
committerMarc Chevrier <marc.chevrier@gmail.com>2018-06-27 16:38:36 (GMT)
commit724bd7790e1a28826b5457c0b28edbfff9af4d15 (patch)
treea9f3b1f0ce4e6b53b8beee22ec49272741de508c /Tests/BuildDepends
parentcc9f88af53b6dd95d3fc1786166dd05599e2ba91 (diff)
downloadCMake-724bd7790e1a28826b5457c0b28edbfff9af4d15.zip
CMake-724bd7790e1a28826b5457c0b28edbfff9af4d15.tar.gz
CMake-724bd7790e1a28826b5457c0b28edbfff9af4d15.tar.bz2
LINK_DEPENDS: add support of 'generator expressions'
Diffstat (limited to 'Tests/BuildDepends')
-rw-r--r--Tests/BuildDepends/Project/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/Tests/BuildDepends/Project/CMakeLists.txt b/Tests/BuildDepends/Project/CMakeLists.txt
index 09be3ea..3f41b26 100644
--- a/Tests/BuildDepends/Project/CMakeLists.txt
+++ b/Tests/BuildDepends/Project/CMakeLists.txt
@@ -106,7 +106,7 @@ set_property(
if(TEST_LINK_DEPENDS)
add_executable(linkdep linkdep.cxx)
- set_property(TARGET linkdep PROPERTY LINK_DEPENDS ${TEST_LINK_DEPENDS})
+ set_property(TARGET linkdep PROPERTY LINK_DEPENDS $<1:${TEST_LINK_DEPENDS}>)
add_library(foo_interface INTERFACE)
set_property(TARGET foo_interface PROPERTY INTERFACE_LINK_DEPENDS $<1:${TEST_LINK_DEPENDS}>)