mirror of
https://github.com/Kitware/CMake.git
synced 2026-05-01 11:50:11 -05:00
c8ccd5a9e3
Add Common Package Specification support to export(EXPORT).
7 lines
193 B
CMake
7 lines
193 B
CMake
add_library(mammal INTERFACE)
|
|
add_library(canine INTERFACE)
|
|
target_link_libraries(canine INTERFACE mammal)
|
|
|
|
install(TARGETS canine EXPORT dog DESTINATION .)
|
|
export(EXPORT dog PACKAGE_INFO dog)
|