CMake/Tests/RunCMake/ExportPackageInfo/Appendix.cmake
Matthew Woehlke c8ccd5a9e3 export: Add build-tree CPS support
Add Common Package Specification support to export(EXPORT).
2025-02-25 15:42:23 -05:00

10 lines
316 B
CMake

add_library(mammal INTERFACE)
add_library(canine INTERFACE)
target_link_libraries(canine INTERFACE mammal)
install(TARGETS mammal EXPORT mammal DESTINATION .)
install(TARGETS canine EXPORT canine DESTINATION .)
export(EXPORT mammal PACKAGE_INFO foo VERSION 1.0)
export(EXPORT canine PACKAGE_INFO foo APPENDIX dog)