mirror of
https://gitlab.kitware.com/cmake/cmake.git
synced 2026-09-25 04:09:36 +03:00
20 lines
392 B
CMake
20 lines
392 B
CMake
include(${CMAKE_CURRENT_LIST_DIR}/../Sbom/Setup.cmake)
|
|
|
|
|
|
include(CMakePackageConfigHelpers)
|
|
include(GNUInstallDirs)
|
|
|
|
add_library(interface INTERFACE)
|
|
|
|
target_include_directories(interface INTERFACE ${CMAKE_CURRENT_BINARY_DIR} ${CMAKE_CURRENT_SOURCE_DIR})
|
|
|
|
install(
|
|
TARGETS interface
|
|
EXPORT interface_targets
|
|
)
|
|
|
|
install(SBOM interface_targets
|
|
EXPORTS interface_targets
|
|
DESTINATION .
|
|
)
|