mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-06 21:59:54 -06:00
CPack: Add CPACK_PACKAGE_HOMEPAGE_URL setting
Initialize it from `CMAKE_PROJECT_HOMEPAGE_URL`.
This commit is contained in:
@@ -105,6 +105,14 @@
|
||||
# if DESCRIPTION has given to the project() call or
|
||||
# CMake generated string with PROJECT_NAME otherwise.
|
||||
#
|
||||
# .. variable:: CPACK_PACKAGE_HOMEPAGE_URL
|
||||
#
|
||||
# Project homepage URL. Default value is::
|
||||
#
|
||||
# ${CMAKE_PROJECT_HOMEPAGE_URL}
|
||||
#
|
||||
# if HOMEPAGE_URL has given to the project().
|
||||
#
|
||||
# .. variable:: CPACK_PACKAGE_FILE_NAME
|
||||
#
|
||||
# The name of the package file to generate, not including the
|
||||
@@ -373,6 +381,10 @@ else()
|
||||
_cpack_set_default(CPACK_PACKAGE_DESCRIPTION_SUMMARY
|
||||
"${CMAKE_PROJECT_NAME} built using CMake")
|
||||
endif()
|
||||
if(CMAKE_PROJECT_HOMEPAGE_URL)
|
||||
_cpack_set_default(CPACK_PACKAGE_HOMEPAGE_URL
|
||||
"${CMAKE_PROJECT_HOMEPAGE_URL}")
|
||||
endif()
|
||||
|
||||
_cpack_set_default(CPACK_PACKAGE_DESCRIPTION_FILE
|
||||
"${CMAKE_ROOT}/Templates/CPack.GenericDescription.txt")
|
||||
|
||||
Reference in New Issue
Block a user