diff options
author | Kyle Edwards <kyle.edwards@kitware.com> | 2018-06-15 17:43:47 (GMT) |
---|---|---|
committer | Kyle Edwards <kyle.edwards@kitware.com> | 2018-06-21 15:00:28 (GMT) |
commit | 48bc8b2b8226882c44faaf0a043e6fbc004241d1 (patch) | |
tree | 0891c05a9ff7e41671786b67e75686e7556b474b /Modules/CPackPackageMaker.cmake | |
parent | 2a2829cc75be0f8a5d7b48ac79f1f3cd53d8a54a (diff) | |
download | CMake-48bc8b2b8226882c44faaf0a043e6fbc004241d1.zip CMake-48bc8b2b8226882c44faaf0a043e6fbc004241d1.tar.gz CMake-48bc8b2b8226882c44faaf0a043e6fbc004241d1.tar.bz2 |
CPack: Move internal implementation modules into Internal/CPack directory
These modules are not meant to be included by user code, they are
only an internal implementation detail for CPack. Having them live
in the main Modules directory with documentation was misleading, so
they have been moved into Modules/Internal/CPack, and their
documentation has been stripped following its move into the new
"CPack Generators" section. No-op modules which contained only
documentation have been removed entirely.
The only module that hasn't been moved is CPackIFW, because it
contains user-facing macros which would be lost if it were moved.
So, the CPackIFW module has been updated with a note explaining what
needs to (eventually) happen.
Diffstat (limited to 'Modules/CPackPackageMaker.cmake')
-rw-r--r-- | Modules/CPackPackageMaker.cmake | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/Modules/CPackPackageMaker.cmake b/Modules/CPackPackageMaker.cmake deleted file mode 100644 index c2ca4c6..0000000 --- a/Modules/CPackPackageMaker.cmake +++ /dev/null @@ -1,27 +0,0 @@ -# Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. - -#.rst: -# CPackPackageMaker -# ----------------- -# -# PackageMaker CPack generator (Mac OS X). -# -# Variables specific to CPack PackageMaker generator -# ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -# -# The following variable is specific to installers built on Mac -# OS X using PackageMaker: -# -# .. variable:: CPACK_OSX_PACKAGE_VERSION -# -# The version of Mac OS X that the resulting PackageMaker archive should be -# compatible with. Different versions of Mac OS X support different -# features. For example, CPack can only build component-based installers for -# Mac OS X 10.4 or newer, and can only build installers that download -# component son-the-fly for Mac OS X 10.5 or newer. If left blank, this value -# will be set to the minimum version of Mac OS X that supports the requested -# features. Set this variable to some value (e.g., 10.4) only if you want to -# guarantee that your installer will work on that version of Mac OS X, and -# don't mind missing extra features available in the installer shipping with -# later versions of Mac OS X. |