* Remove old manual pages from debian/* * Rename debian/cmake.lintian to debian/cmake.lintian-overrides to comply with dh_lintian standard. Signed-off-by: Modestas Vainius <modestas@vainius.eu>ci/unstable
parent
b4cbbe68d0
commit
e1924f08a4
@ -1,65 +0,0 @@
|
||||
.\" Hey, EMACS: -*- nroff -*-
|
||||
.\" First parameter, NAME, should be all caps
|
||||
.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection
|
||||
.\" other parameters are allowed: see man(7), man(1)
|
||||
.TH CMAKE SECTION "November 28, 2001"
|
||||
.\" Please adjust this date whenever revising the manpage.
|
||||
.\"
|
||||
.\" Some roff macros, for reference:
|
||||
.\" .nh disable hyphenation
|
||||
.\" .hy enable hyphenation
|
||||
.\" .ad l left justify
|
||||
.\" .ad b justify to both left and right margins
|
||||
.\" .nf disable filling
|
||||
.\" .fi enable filling
|
||||
.\" .br insert line break
|
||||
.\" .sp <n> insert n+1 empty lines
|
||||
.\" for manpage-specific macros, see man(7)
|
||||
.SH NAME
|
||||
cmake \- Cross-platform Make
|
||||
.SH SYNOPSIS
|
||||
.B cmake
|
||||
.RI [ options ] " files" ...
|
||||
.br
|
||||
.B CMakeSetup
|
||||
.RI [ options ] " files" ...
|
||||
.br
|
||||
.B ctest
|
||||
.RI [ options ] " files" ...
|
||||
.SH DESCRIPTION
|
||||
This manual page documents briefly the
|
||||
.B cmake
|
||||
and
|
||||
.B CMakeSetup
|
||||
and
|
||||
.B ctest
|
||||
commands.
|
||||
This manual page was written for the Debian GNU/Linux distribution
|
||||
because the original program does not have a manual page.
|
||||
Instead, it has documentation in PDF format; see below.
|
||||
.PP
|
||||
.\" TeX users may be more comfortable with the \fB<whatever>\fP and
|
||||
.\" \fI<whatever>\fP escape sequences to invode bold face and italics,
|
||||
.\" respectively.
|
||||
\fBcmake\fP is a program that...
|
||||
.SH OPTIONS
|
||||
These programs follow the usual GNU command line syntax, with long
|
||||
options starting with two dashes (`-').
|
||||
A summary of options is included below.
|
||||
For a complete description, see the Info files.
|
||||
.TP
|
||||
.B \-h, \-\-help
|
||||
Show summary of options.
|
||||
.TP
|
||||
.B \-v, \-\-version
|
||||
Show version of program.
|
||||
.SH SEE ALSO
|
||||
.BR Dart (1),
|
||||
.BR VTK (1).
|
||||
.br
|
||||
The programs are documented fully by
|
||||
.IR /usr/share/doc/cmake/CMake.pdf.gz ,
|
||||
installed with this package.
|
||||
.SH AUTHOR
|
||||
This manual page was written by A. Maitland Bottoms <bottoms@debian.org>,
|
||||
for the Debian GNU/Linux system (but may be used by others).
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -1,116 +0,0 @@
|
||||
.\" Hey, EMACS: -*- nroff -*-
|
||||
.\" First parameter, NAME, should be all caps
|
||||
.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection
|
||||
.\" other parameters are allowed: see man(7), man(1)
|
||||
.TH CMAKE 1 "August 8, 2002"
|
||||
.\" Please adjust this date whenever revising the manpage.
|
||||
.\"
|
||||
.\" Some roff macros, for reference:
|
||||
.\" .nh disable hyphenation
|
||||
.\" .hy enable hyphenation
|
||||
.\" .ad l left justify
|
||||
.\" .ad b justify to both left and right margins
|
||||
.\" .nf disable filling
|
||||
.\" .fi enable filling
|
||||
.\" .br insert line break
|
||||
.\" .sp <n> insert n+1 empty lines
|
||||
.\" for manpage-specific macros, see man(7)
|
||||
.SH NAME
|
||||
cmake \- Cross-platform Makefile generator.
|
||||
.SH SYNOPSIS
|
||||
.B cmake
|
||||
.RI < path-to-source > " " [ options ]
|
||||
.br
|
||||
.B ccmake
|
||||
.RI < path-to-source >
|
||||
.br
|
||||
.B ctest
|
||||
.RI [ -R " " < regex > ]
|
||||
.br
|
||||
.B cmaketest
|
||||
.RI < test-src-dir > " " < test-bin-dir > " " < test-executable >
|
||||
.SH DESCRIPTION
|
||||
|
||||
This manual page documents briefly the \fBcmake\fP, \fBccmake\fP,
|
||||
\fBctest\fP and \fBcmaketest\fP commands. It is not intended to aid
|
||||
authors of CMakeLists.txt files or to describe all advanced options
|
||||
available. For full documentation, please visit
|
||||
\fBhttp://www.cmake.org\fP.
|
||||
|
||||
.PP
|
||||
.\" TeX users may be more comfortable with the \fB<whatever>\fP and
|
||||
.\" \fI<whatever>\fP escape sequences to invode bold face and italics,
|
||||
.\" respectively.
|
||||
|
||||
CMake provides developers with a means of building their project on
|
||||
multiple platforms while writing only one build system configuration.
|
||||
The developer writes a set of CMakeLists.txt files that are read by
|
||||
CMake and used to generate a native build system for the current
|
||||
environment. On unix platforms, Makefiles are generated.
|
||||
|
||||
.PP
|
||||
|
||||
\fBcmake\fP is used to generate the makefiles for a project from its
|
||||
source. The first argument should specify a path to the source tree.
|
||||
The current directory will be used as the build tree for the project.
|
||||
Both in-source and out-of-source builds are supported, but
|
||||
out-of-source builds are preferred. CMake provides functionality for
|
||||
tailoring the build to user preferences through settings in the cmake
|
||||
cache. Options may be set interactively using the -i option (or
|
||||
\fBccmake\fP). Once CMake has generated the makefiles in the build
|
||||
tree, one may use the standard \fBmake\fP tool to build the project.
|
||||
|
||||
.PP
|
||||
|
||||
\fBccmake\fP provides a curses interface front-end for \fBcmake\fP.
|
||||
The interface allows users to interactively configure the build
|
||||
options stored in the cmake cache. This is the preferred interface
|
||||
for interactive builds. Build scripts should use \fBcmake\fP
|
||||
directly.
|
||||
|
||||
.PP
|
||||
|
||||
\fBctest\fP runs tests found in the project's build tree after it has
|
||||
been compiled and displays a summary of test results. Use the -R
|
||||
option to specify a regular expression of test names to match.
|
||||
|
||||
\fBcmaketest\fP is provided to simplify project testing scripts. It
|
||||
allows a CMake project to be compiled and tested from a single command
|
||||
line.
|
||||
|
||||
.SH OPTIONS
|
||||
|
||||
.TP
|
||||
.B \-\-help
|
||||
Available for \fBcmake\fP , \fBccmake\fP and \fBcmaketest\fP.
|
||||
.br
|
||||
Show version number and summary of options.
|
||||
|
||||
.TP
|
||||
.B -R regex
|
||||
Available for \fBctest\fP.
|
||||
.br
|
||||
Run only tests matching the given regular expression.
|
||||
|
||||
.TP
|
||||
.B -i
|
||||
Available for \fBcmake\fP.
|
||||
.br
|
||||
Run cmake in an interactive wizard mode to configure the build.
|
||||
|
||||
.SH SEE ALSO
|
||||
.BR Dart (1),
|
||||
.BR VTK (1).
|
||||
.BR
|
||||
In Debian the programs are documented by
|
||||
.IR /usr/share/doc/cmake/CMake.pdf.gz ,
|
||||
installed with this package.
|
||||
|
||||
.SH MAILING LIST
|
||||
For help using cmake, a mailing list is provided at
|
||||
\fBcmake@www.cmake.org\fP. Please first read the full documentation
|
||||
at \fBhttp://www.cmake.org\fP before posting questions to the list.
|
||||
|
||||
.SH AUTHOR
|
||||
This manual page was written by CMake authors at Kitware
|
||||
<kitware@kitware.com>.
|
@ -1,141 +0,0 @@
|
||||
.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.
|
||||
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in new issue