mirror of
https://github.com/Kitware/CMake.git
synced 2026-04-21 13:48:33 -05:00
ff015ee11e
Constructs such as target_link_libraries(foo $<$<STREQUAL:$<TARGET_FILE:foo>,foo.so>:bar>) segfault before this patch.
5 lines
143 B
CMake
5 lines
143 B
CMake
|
|
add_library(foo SHARED empty.cpp)
|
|
add_library(bar SHARED empty.cpp)
|
|
target_link_libraries(foo $<$<STREQUAL:$<TARGET_FILE:foo>,anything>:bar>)
|