diff options
author | Stephen Kelly <steveire@gmail.com> | 2013-01-16 15:42:39 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2013-01-17 16:20:17 (GMT) |
commit | 6c8d8afe344aa2e0ba0c5c881d397a28a559dcbd (patch) | |
tree | 4d1617d73ea6e2bb011da55b09f41d33bd6abbd9 /Tests/RunCMake/CMP0004/CMP0004-OLD.cmake | |
parent | 1800f702a056b2eb25eb35daf9ed8d6474ecd0f9 (diff) | |
download | CMake-6c8d8afe344aa2e0ba0c5c881d397a28a559dcbd.zip CMake-6c8d8afe344aa2e0ba0c5c881d397a28a559dcbd.tar.gz CMake-6c8d8afe344aa2e0ba0c5c881d397a28a559dcbd.tar.bz2 |
Add the $<TARGET_POLICY> expression
This new expression allows checking how a policy was set when a target
was created. That information is only recorded for a subset of policies,
so a whitelist is used.
Diffstat (limited to 'Tests/RunCMake/CMP0004/CMP0004-OLD.cmake')
-rw-r--r-- | Tests/RunCMake/CMP0004/CMP0004-OLD.cmake | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/Tests/RunCMake/CMP0004/CMP0004-OLD.cmake b/Tests/RunCMake/CMP0004/CMP0004-OLD.cmake new file mode 100644 index 0000000..d6ed72c --- /dev/null +++ b/Tests/RunCMake/CMP0004/CMP0004-OLD.cmake @@ -0,0 +1,21 @@ + +cmake_minimum_required(VERSION 2.8) + +cmake_policy(SET CMP0004 OLD) + +add_library(foo SHARED empty.cpp) +add_library(bar SHARED empty.cpp) +add_library(bing SHARED empty.cpp) +add_library(bung SHARED empty.cpp) + +cmake_policy(SET CMP0004 NEW) + +add_library(bat SHARED empty.cpp) + +target_link_libraries(foo "$<1: bar >") +target_link_libraries(bing "$<$<NOT:$<TARGET_POLICY:CMP0004>>: bar >") +target_link_libraries(bung "$<$<TARGET_POLICY:CMP0004>: bar >") + +# The line below causes the error because the policy is NEW when bat +# is created. +target_link_libraries(bat "$<1: bar >") |