mirror of
https://github.com/Kitware/CMake.git
synced 2026-05-06 22:30:07 -05:00
c8ccd5a9e3
Add Common Package Specification support to export(EXPORT).
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)
|