CPack: Add CPACK_PACKAGE_HOMEPAGE_URL setting

Initialize it from `CMAKE_PROJECT_HOMEPAGE_URL`.
This commit is contained in:
Alex Turbov
2018-04-17 09:08:59 +03:00
committed by Brad King
parent c9fa8f9442
commit 30c8c9f55d

View File

@@ -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")