blob: e261090cabe5777bf37416bd60af3959c3a81c0a [file] [log] [blame] [edit]
project(LinkOnly CXX)
add_library(linkOnlyOne foo.cxx)
add_library(linkOnlyTwo foo.cxx)
add_library(foo foo.cxx)
add_library(bar foo.cxx)
target_link_libraries(bar $<LINK_ONLY:linkOnlyOne> $<LINK_ONLY:linkOnlyTwo> foo)
install(TARGETS foo linkOnlyOne linkOnlyTwo EXPORT foo)
export(PACKAGE_INFO foo EXPORT foo)
install(TARGETS bar EXPORT bar)
export(PACKAGE_INFO bar EXPORT bar)