mirror of
https://gitlab.kitware.com/cmake/cmake.git
synced 2026-09-25 04:09:36 +03:00
20 lines
414 B
CMake
20 lines
414 B
CMake
include(${CMAKE_CURRENT_LIST_DIR}/Setup.cmake)
|
|
|
|
include(CMakePackageConfigHelpers)
|
|
include(GNUInstallDirs)
|
|
|
|
project(test LANGUAGES C
|
|
DESCRIPTION "Metadata Test Project"
|
|
SPDX_LICENSE "BSD-3"
|
|
HOMEPAGE_URL "www.example.com"
|
|
VERSION 1.2.0)
|
|
|
|
add_library(test INTERFACE)
|
|
set_target_properties(test PROPERTIES SPDX_LICENSE license-for-test-target)
|
|
|
|
install(
|
|
TARGETS test
|
|
EXPORT test_targets
|
|
DESTINATION .
|
|
)
|