mirror of
https://github.com/Kitware/CMake.git
synced 2026-02-05 06:40:26 -06:00
6 lines
207 B
CMake
6 lines
207 B
CMake
add_library(foo INTERFACE)
|
|
add_library(dog INTERFACE)
|
|
install(TARGETS foo EXPORT foo DESTINATION .)
|
|
install(TARGETS dog EXPORT dog DESTINATION .)
|
|
export(EXPORT foo PACKAGE_INFO test DEFAULT_TARGETS dog cat)
|