Skip to content

Commit

Permalink
Merge pull request #2202 from marehr/configure_cpack
Browse files Browse the repository at this point in the history
[INFRA] configure cpack for source builds
  • Loading branch information
marehr authored Oct 13, 2020
2 parents 5d64899 + 1a350c7 commit 370673f
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion build_system/seqan3-package.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

cmake_minimum_required (VERSION 3.7)

set (CPACK_GENERATOR "ZIP" "TXZ")
set (CPACK_GENERATOR "TXZ")

set (CPACK_PACKAGE_VENDOR "seqan")
# A description of the project, used in places such as the introduction screen of CPack-generated Windows installers.
Expand All @@ -19,4 +19,8 @@ set (CPACK_PACKAGE_ICON "${SEQAN3_CLONE_DIR}/test/documentation/seqan_logo.png")
set (CPACK_RESOURCE_FILE_LICENSE "${SEQAN3_CLONE_DIR}/LICENSE.md")
set (CPACK_RESOURCE_FILE_README "${SEQAN3_CLONE_DIR}/README.md")

# Source Package
set (CPACK_SOURCE_GENERATOR "TXZ")
set (CPACK_SOURCE_IGNORE_FILES "\\\\.git($|/)")

include (CPack)

0 comments on commit 370673f

Please sign in to comment.