From: Matthias Maier Date: Tue, 23 Apr 2013 08:46:55 +0000 (+0000) Subject: CMake: Remove setup_cpack.cmake. We'll do packaging by hand. X-Git-Tag: v8.0.0~632 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=abbefaa968e580b6efe56c516fc83ccdc047ae25;p=dealii.git CMake: Remove setup_cpack.cmake. We'll do packaging by hand. git-svn-id: https://svn.dealii.org/trunk@29368 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/CMakeLists.txt b/deal.II/CMakeLists.txt index 9892558cc2..b665897d70 100644 --- a/deal.II/CMakeLists.txt +++ b/deal.II/CMakeLists.txt @@ -135,11 +135,6 @@ ADD_SUBDIRECTORY(examples) # INCLUDE(setup_custom_targets) -# -# Include CPack configuration: -# -INCLUDE(setup_cpack) - # # And finally, print the configuration: # diff --git a/deal.II/cmake/setup_cpack.cmake b/deal.II/cmake/setup_cpack.cmake deleted file mode 100644 index 2360a4aa9b..0000000000 --- a/deal.II/cmake/setup_cpack.cmake +++ /dev/null @@ -1,50 +0,0 @@ -##### -## -## Copyright (C) 2013 by the deal.II authors -## -## This file is part of the deal.II library. -## -## -## This file is dual licensed under QPL 1.0 and LGPL 2.1 or any later -## version of the LGPL license. -## -## Author: Matthias Maier -## -##### - -# -# -########################################################################### -# # -# Setup cpack: # -# # -########################################################################### - -# -# General setup: -# -SET(CPACK_PACKAGE_NAME "${DEAL_II_PACKAGE_NAME}") -SET(CPACK_PACKAGE_VENDOR "${DEAL_II_PACKAGE_VENDOR}") -SET(CPACK_PACKAGE_VERSION "${DEAL_II_PACKAGE_VERSION}") -SET(CPACK_PACKAGE_VERSION_MAJOR "${DEAL_II_VERSION_MAJOR}") -SET(CPACK_PACKAGE_VERSION_MINOR "${DEAL_II_VERSION_MINOR}") - -SET(CPACK_PACKAGE_DESCRIPTION_SUMMARY "${DEAL_II_PACKAGE_DESCRIPTION}") -SET(CPACK_PACKAGE_DESCRIPTION_FILE "${CMAKE_SOURCE_DIR}/README") -SET(CPACK_RESOURCE_FILE_LICENSE "${CMAKE_SOURCE_DIR}/LICENSE") - -SET(CPACK_SOURCE_GENERATOR TGZ ZIP) # TBZ2 -SET(CPACK_SOURCE_IGNORE_FILES "/\\\\.svn/;\\\\.swp$;.*~$") - -SET(CPACK_GENERATOR TGZ ZIP) # TBZ2 - -# -# Generator specific configuration: -# - -SET(CPACK_ARCHIVE_COMPONENT_INSTALL TRUE) - -# TODO - -#INCLUDE(InstallRequiredSystemLibraries) -INCLUDE(CPack)