diff options
author | Simon Mossmyr <simon.mossmyr@sunstone.se> | 2019-11-01 22:31:28 +0100 |
---|---|---|
committer | Simon Mossmyr <simon.mossmyr@sunstone.se> | 2019-11-01 22:31:28 +0100 |
commit | 4aa2446d784ff3d0d3c5af4d0e278b6b47596665 (patch) | |
tree | a04f034262c47c78bbac1ccb23b11defb186c928 /CMakeLists.txt | |
parent | 903a9911f98969d77b2f45de50f8bdb87822fa06 (diff) |
Fix incorrect CPack description file path
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d283a3..fed5e0f 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -341,7 +341,7 @@ install(TARGETS ${LIBRARY_NAME} SET(CPACK_PACKAGE_NAME ${PROJECT_NAME}) SET(CPACK_PACKAGE_DESCRIPTION_SUMMARY "MPQ manipulation library") SET(CPACK_PACKAGE_VENDOR "Ladislav Zezula") - SET(CPACK_PACKAGE_DESCRIPTION_FILE "${CMAKE_CURRENT_SOURCE_DIR}/README") + SET(CPACK_PACKAGE_DESCRIPTION_FILE "${CMAKE_CURRENT_SOURCE_DIR}/README.md") SET(CPACK_RESOURCE_FILE_LICENSE "${CMAKE_CURRENT_SOURCE_DIR}/LICENSE") SET(CPACK_PACKAGE_VERSION_MAJOR "${VERSION_MAJOR}") SET(CPACK_PACKAGE_VERSION_MINOR "${VERSION_MINOR}") |