mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-08 14:50:10 -06:00
12 lines
271 B
CMake
12 lines
271 B
CMake
project(LinkInterfaceGeneratorExpression CXX)
|
|
|
|
add_library(foo foo.cxx)
|
|
add_library(bar foo.cxx)
|
|
target_link_libraries(bar $<1:foo>)
|
|
|
|
install(TARGETS foo EXPORT foo)
|
|
export(EXPORT foo PACKAGE_INFO foo)
|
|
|
|
install(TARGETS bar EXPORT bar)
|
|
export(EXPORT bar PACKAGE_INFO bar)
|