You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
142 lines
4.8 KiB
142 lines
4.8 KiB
.TH cpack 1 "August 05, 2006" "cpack 2.4-patch 2"
|
|
.SH NAME
|
|
.PP
|
|
cpack - Packaging driver provided by CMake.
|
|
.SH SYNOPSIS
|
|
.PP
|
|
cpack -G <generator> [options]
|
|
.SH DESCRIPTION
|
|
.PP
|
|
The "cpack" executable is the CMake packaging program. CMake-generated build trees created for projects that use the INSTALL_* commands have packaging support. This program will generate the package.
|
|
|
|
.PP
|
|
CMake is a cross-platform build system generator. Projects specify their build process with platform-independent CMake listfiles included in each directory of a source tree with the name CMakeLists.txt. Users build a project by using CMake to generate a build system for a native tool on their platform.
|
|
|
|
.SH OPTIONS
|
|
.TP
|
|
.B -G <generator>
|
|
Use the specified generator to generate package.
|
|
|
|
CPack may support multiple native packaging systems on certain platforms. A generator is responsible for generating input files for particular system and invoking that systems. Possible generator names are specified in the Generators section.
|
|
|
|
.TP
|
|
.B -C <Configuration>
|
|
Specify the project configuration
|
|
|
|
This option specifies the configuration that the project was build with, for example 'Debug', 'Release'.
|
|
|
|
.TP
|
|
.B -D <var>=<value>
|
|
Set a CPack variable.
|
|
|
|
Set a variable that can be used by the generator.
|
|
|
|
.TP
|
|
.B --config <config file>
|
|
Specify the config file.
|
|
|
|
Specify the config file to use to create the package. By default CPackConfig.cmake in the current directory will be used.
|
|
|
|
.TP
|
|
.B --copyright [file]
|
|
Print the CMake copyright and exit.
|
|
|
|
If a file is specified, the copyright is written into it.
|
|
|
|
.TP
|
|
.B --help
|
|
Print usage information and exit.
|
|
|
|
Usage describes the basic command line interface and its options.
|
|
|
|
.TP
|
|
.B --help-full [file]
|
|
Print full help and exit.
|
|
|
|
Full help displays most of the documentation provided by the UNIX man page. It is provided for use on non-UNIX platforms, but is also convenient if the man page is not installed. If a file is specified, the help is written into it.
|
|
|
|
.TP
|
|
.B --help-html [file]
|
|
Print full help in HTML format.
|
|
|
|
This option is used by CMake authors to help produce web pages. If a file is specified, the help is written into it.
|
|
|
|
.TP
|
|
.B --help-man [file]
|
|
Print a UNIX man page and exit.
|
|
|
|
This option is used by the cmake build to generate the UNIX man page. If a file is specified, the help is written into it.
|
|
|
|
.TP
|
|
.B --version [file]
|
|
Show program name/version banner and exit.
|
|
|
|
If a file is specified, the version is written into it.
|
|
|
|
.SH GENERATORS
|
|
.PP
|
|
The following generators are available on this platform:
|
|
|
|
.TP
|
|
.B STGZ
|
|
Self extracting Tar GZip compression
|
|
|
|
.TP
|
|
.B TBZ2
|
|
Tar BZip2 compression
|
|
|
|
.TP
|
|
.B TGZ
|
|
Tar GZip compression
|
|
|
|
.TP
|
|
.B TZ
|
|
Tar Compress compression
|
|
|
|
.TP
|
|
.B ZIP
|
|
ZIP file format
|
|
|
|
.SH MODULES
|
|
.PP
|
|
The following modules are provided with CMake. They can be used with INCLUDE(ModuleName).
|
|
|
|
.SH COPYRIGHT
|
|
.PP
|
|
Copyright (c) 2002 Kitware, Inc., Insight Consortium. All rights reserved.
|
|
|
|
.PP
|
|
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
|
|
|
|
.TP
|
|
.B *
|
|
Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
|
|
|
|
.TP
|
|
.B *
|
|
Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
|
|
|
|
.TP
|
|
.B *
|
|
The names of Kitware, Inc., the Insight Consortium, or the names of any consortium members, or of any contributors, may not be used to endorse or promote products derived from this software without specific prior written permission.
|
|
|
|
.TP
|
|
.B *
|
|
Modified source versions must be plainly marked as such, and must not be misrepresented as being the original software.
|
|
|
|
.PP
|
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
.SH MAILING LIST
|
|
.PP
|
|
For help and discussion about using cmake, a mailing list is provided at cmake@www.cmake.org. Please first read the full documentation at http://www.cmake.org before posting questions to the list.
|
|
|
|
.SH SEE ALSO
|
|
.PP
|
|
.B cmake(1), ccmake(1)
|
|
|
|
.SH AUTHOR
|
|
.PP
|
|
This manual page was generated by the "--help-man" option.
|
|
|