53b10fdad7
Commit 239b0c6b (Don't add invalid content to static lib INTERFACE_LINK_LIBRARIES., 2013-10-20) extended a test which excercised the logic of the LINK_ONLY generator expression. Commit ef10b87c (CMP0022: Plain target_link_libraries must populate link interface, 2013-11-02) removed the instance of LINK_ONLY which was excercised by that test. Add a new test which excercises the other instance of LINK_ONLY by setting the CMP0022 policy to NEW and consuming the contents of the INTERFACE_LINK_LIBRARIES target property.
9 lines
215 B
CMake
9 lines
215 B
CMake
|
|
project(CMP0022-NOWARN-static)
|
|
|
|
add_library(foo STATIC empty_vs6_1.cpp)
|
|
add_library(bar STATIC empty_vs6_2.cpp)
|
|
add_library(bat STATIC empty_vs6_3.cpp)
|
|
target_link_libraries(foo bar)
|
|
target_link_libraries(bar bat)
|