mirror of
https://github.com/reactos/CMake.git
synced 2025-01-02 00:39:17 +00:00
3e30d9ed67
Always populate the INTERFACE_LINK_LIBRARIES for interface entries. Don't populate the old interface properties matching (IMPORTED_)?LINK_INTERFACE_LIBRARIES(_<CONFIG>)? if CMP0022 is NEW. Because the INTERFACE_LINK_LIBRARIES property is now populated by the target_link_libraries when operating on a static library, make an equivalent change which populates the property with the same value when the old link_libraries() command is used. This silences the policy warning in that case.
12 lines
322 B
CMake
12 lines
322 B
CMake
|
|
project(CMP0022-WARN-tll)
|
|
|
|
add_library(foo SHARED empty_vs6_1.cpp)
|
|
add_library(bar SHARED empty_vs6_2.cpp)
|
|
add_library(bat SHARED empty_vs6_3.cpp)
|
|
target_link_libraries(bar LINK_PUBLIC foo)
|
|
set_property(TARGET bar PROPERTY LINK_INTERFACE_LIBRARIES bat)
|
|
|
|
add_library(user SHARED empty.cpp)
|
|
target_link_libraries(user bar)
|