diff options
author | Stephen Kelly <steveire@gmail.com> | 2013-02-12 09:37:37 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2013-02-12 09:39:35 (GMT) |
commit | 5c9f5e313ff893a28f975749ad9a6b19481e8e62 (patch) | |
tree | bc9758f66ca4efc330faa978c264e44a298689fb | |
parent | 5b88504f650c7bcd3d404853b26292b50fa6f141 (diff) | |
download | CMake-5c9f5e313ff893a28f975749ad9a6b19481e8e62.zip CMake-5c9f5e313ff893a28f975749ad9a6b19481e8e62.tar.gz CMake-5c9f5e313ff893a28f975749ad9a6b19481e8e62.tar.bz2 |
Don't use LINKED where not needed.
3 files changed, 3 insertions, 3 deletions
diff --git a/Tests/CMakeCommands/target_compile_definitions/CMakeLists.txt b/Tests/CMakeCommands/target_compile_definitions/CMakeLists.txt index 0bfcc1b..8fed4ca 100644 --- a/Tests/CMakeCommands/target_compile_definitions/CMakeLists.txt +++ b/Tests/CMakeCommands/target_compile_definitions/CMakeLists.txt @@ -25,6 +25,6 @@ target_compile_definitions(consumer PRIVATE $<TARGET_PROPERTY:target_compile_definitions,INTERFACE_COMPILE_DEFINITIONS> $<$<TARGET_DEFINED:notdefined>:SHOULD_NOT_BE_DEFINED> $<$<TARGET_DEFINED:target_compile_definitions>:SHOULD_BE_DEFINED> - $<LINKED:linked> + $<TARGET_PROPERTY:linked,INTERFACE_COMPILE_DEFINITIONS> -DDASH_D_DEFINE ) diff --git a/Tests/CMakeCommands/target_include_directories/CMakeLists.txt b/Tests/CMakeCommands/target_include_directories/CMakeLists.txt index a564918..2c2ca42 100644 --- a/Tests/CMakeCommands/target_include_directories/CMakeLists.txt +++ b/Tests/CMakeCommands/target_include_directories/CMakeLists.txt @@ -52,6 +52,6 @@ set_property(TARGET linked PROPERTY target_include_directories(consumer PRIVATE $<TARGET_PROPERTY:target_include_directories,INTERFACE_INCLUDE_DIRECTORIES> - $<LINKED:linked> + $<TARGET_PROPERTY:linked,INTERFACE_INCLUDE_DIRECTORIES> relative_dir ) diff --git a/Tests/IncludeDirectories/TargetIncludeDirectories/CMakeLists.txt b/Tests/IncludeDirectories/TargetIncludeDirectories/CMakeLists.txt index 5387377..ad6671f 100644 --- a/Tests/IncludeDirectories/TargetIncludeDirectories/CMakeLists.txt +++ b/Tests/IncludeDirectories/TargetIncludeDirectories/CMakeLists.txt @@ -121,5 +121,5 @@ target_link_libraries(lib5 libbad libgood) # get the libgood includes in before the libbad includes. # We do that with this command: target_include_directories(lib5 - BEFORE PRIVATE $<LINKED:libgood> + BEFORE PRIVATE $<TARGET_PROPERTY:libgood,INTERFACE_INCLUDE_DIRECTORIES> ) |