You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
394 B
15 lines
394 B
add_library(foo INTERFACE)
|
|
add_library(bar INTERFACE)
|
|
|
|
add_library(test INTERFACE)
|
|
target_link_libraries(test INTERFACE foo bar)
|
|
|
|
install(TARGETS foo EXPORT foo DESTINATION .)
|
|
install(TARGETS bar EXPORT bar DESTINATION .)
|
|
|
|
install(EXPORT foo DESTINATION .)
|
|
install(EXPORT bar DESTINATION . NAMESPACE bar_)
|
|
|
|
install(TARGETS test EXPORT test DESTINATION .)
|
|
install(PACKAGE_INFO test EXPORT test)
|