summaryrefslogtreecommitdiffstats
path: root/Tests
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2019-01-15 18:18:34 (GMT)
committerKitware Robot <kwrobot@kitware.com>2019-01-15 18:18:54 (GMT)
commit1d328d8119482ca658434c7eddc07178fd363ae0 (patch)
treee9079425f4e52d86861f16897c8797e6aad1af8c /Tests
parent88b90fb1ff8b5cef816cedcf6dd378cc706806d6 (diff)
parent59c408d053cfe90273db04c3804ed91d7ad59d8f (diff)
downloadCMake-1d328d8119482ca658434c7eddc07178fd363ae0.zip
CMake-1d328d8119482ca658434c7eddc07178fd363ae0.tar.gz
CMake-1d328d8119482ca658434c7eddc07178fd363ae0.tar.bz2
Merge topic 'extendwhitelist'
59c408d053 cmTargetPropertyComputer: whitelist 'MANUALLY_ADDED_DEPENDENCIES'. Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !2808
Diffstat (limited to 'Tests')
-rw-r--r--Tests/InterfaceLibrary/CMakeLists.txt1
1 files changed, 1 insertions, 0 deletions
diff --git a/Tests/InterfaceLibrary/CMakeLists.txt b/Tests/InterfaceLibrary/CMakeLists.txt
index 3db210a..6aae09a 100644
--- a/Tests/InterfaceLibrary/CMakeLists.txt
+++ b/Tests/InterfaceLibrary/CMakeLists.txt
@@ -31,6 +31,7 @@ add_library(item_real STATIC item.cpp)
add_library(item_iface INTERFACE IMPORTED)
set_property(TARGET item_iface PROPERTY IMPORTED_LIBNAME item_real)
add_dependencies(item_iface item_real)
+get_property(item_iface_dependencies TARGET item_iface PROPERTY MANUALLY_ADDED_DEPENDENCIES)
link_directories(${CMAKE_CURRENT_BINARY_DIR})
add_executable(InterfaceLibrary definetestexe.cpp)