diff options
author | Stephen Kelly <steveire@gmail.com> | 2013-11-25 15:23:11 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2013-11-25 15:23:11 (GMT) |
commit | 5ee9e6bc11a01c7450ffeb14d86f0fe0cef540d6 (patch) | |
tree | 2b58b308a696450f88b9916da192eb7e74dc0442 /Tests/RunCMake/interface_library/whitelist.cmake | |
parent | 0bfcb450e6cab8d9c2c079e10bf0acea62ffadbe (diff) | |
download | CMake-5ee9e6bc11a01c7450ffeb14d86f0fe0cef540d6.zip CMake-5ee9e6bc11a01c7450ffeb14d86f0fe0cef540d6.tar.gz CMake-5ee9e6bc11a01c7450ffeb14d86f0fe0cef540d6.tar.bz2 |
cmTarget: Add whitelist of properties on INTERFACE_LIBRARY.
Diffstat (limited to 'Tests/RunCMake/interface_library/whitelist.cmake')
-rw-r--r-- | Tests/RunCMake/interface_library/whitelist.cmake | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Tests/RunCMake/interface_library/whitelist.cmake b/Tests/RunCMake/interface_library/whitelist.cmake new file mode 100644 index 0000000..98ef05c --- /dev/null +++ b/Tests/RunCMake/interface_library/whitelist.cmake @@ -0,0 +1,6 @@ + +add_library(iface INTERFACE) + +set_property(TARGET iface PROPERTY OUTPUT_NAME output) +set_property(TARGET iface APPEND PROPERTY OUTPUT_NAME append) +get_target_property(outname iface OUTPUT_NAME) |