1
0
mirror of https://github.com/rwengine/openrw.git synced 2024-07-05 12:29:05 +02:00

cmake: use cpack to create archives

This commit is contained in:
Anonymous Maarten 2018-06-02 03:49:05 +02:00
parent e3c0b00453
commit 2da3660e23
2 changed files with 19 additions and 0 deletions

17
CMakeCPack.cmake Normal file
View File

@ -0,0 +1,17 @@
set(CPACK_PACKAGE_NAME "${CMAKE_PROJECT_NAME}")
set(CPACK_PACKAGE_DESCRIPTION_SUMMARY "OpenRW 'Open ReWrite' is an un-official open source recreation of the classic Grand Theft Auto III game executable")
set(CPACK_PACKAGE_VENDOR "openrw")
# FIXME: better description of the project
set(CPACK_PACKAGE_DESCRIPTION_FILE "${CMAKE_CURRENT_SOURCE_DIR}/COPYING")
set(CPACK_RESOURCE_FILE_LICENSE "${CMAKE_CURRENT_SOURCE_DIR}/COPYING")
string(SUBSTRING "${GIT_SHA1}" 0 8 GIT_SHA1_SHORT)
set(CPACK_PACKAGE_VERSION "${GIT_SHA1_SHORT}")
set(CPACK_PACKAGE_INSTALL_DIRECTORY "${CPACK_PACKAGE_NAME}")
set(CPACK_SOURCE_PACKAGE_FILE_NAME "${CPACK_PACKAGE_NAME}-${GIT_SHA1_SHORT}")
set(CPACK_PACKAGE_FILE_NAME "${CPACK_PACKAGE_NAME}-${GIT_SHA1_SHORT}")
# set(CPACK_PROJECT_CONFIG_FILE "${CMAKE_CURRENT_SOURCE_DIR}/CMakeCPackOptions.cmake")
include(CPack)

View File

@ -48,3 +48,5 @@ install(FILES COPYING
file(COPY COPYING
DESTINATION "${PROJECT_BINARY_DIR}"
)
include(CMakeCPack.cmake)