mirror of
https://gitlab.kitware.com/cmake/cmake.git
synced 2026-09-25 04:09:36 +03: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)
|