diff options
author | Andy Cedilnik <andy.cedilnik@kitware.com> | 2006-05-04 01:42:51 (GMT) |
---|---|---|
committer | Andy Cedilnik <andy.cedilnik@kitware.com> | 2006-05-04 01:42:51 (GMT) |
commit | d4e84f8c5b0deea6d1559a0894662965ff9b7edc (patch) | |
tree | f6a5bfe0cbb78ac1b01944cdc583002bcefb0093 /Source/CPack/cpack.cxx | |
parent | 9600c0a189662dc0f5ffc03d9ac5555f133ed724 (diff) | |
download | CMake-d4e84f8c5b0deea6d1559a0894662965ff9b7edc.zip CMake-d4e84f8c5b0deea6d1559a0894662965ff9b7edc.tar.gz CMake-d4e84f8c5b0deea6d1559a0894662965ff9b7edc.tar.bz2 |
ENH: Add BZip2 support, add better documentation
Diffstat (limited to 'Source/CPack/cpack.cxx')
-rw-r--r-- | Source/CPack/cpack.cxx | 17 |
1 files changed, 4 insertions, 13 deletions
diff --git a/Source/CPack/cpack.cxx b/Source/CPack/cpack.cxx index 8111d22..3143c2a 100644 --- a/Source/CPack/cpack.cxx +++ b/Source/CPack/cpack.cxx @@ -42,7 +42,7 @@ static const cmDocumentationEntry cmDocumentationName[] = static const cmDocumentationEntry cmDocumentationUsage[] = { {0, - " cpack -G <generator> -P <ProjectName> -R <ReleaseVersion> [options]", + " cpack -G <generator> [options]", 0}, {0,0,0} }; @@ -67,23 +67,14 @@ static const cmDocumentationEntry cmDocumentationOptions[] = "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." }, - {"-P <ProjectName>", "Specify the project name.", - "This option specifies the project name that will be used to generate " - "the installer." }, {"-C <Configuration>", "Specify the project configuration", "This option specifies the configuration that the project was build " "with, for example 'Debug', 'Release'." }, - {"-R <ReleaseVersion>", "Specify the release version of the project.", - "This option specifies the release version of the project that will be " - "used by installer." }, {"-D <var>=<value>", "Set a CPack variable.", \ "Set a variable that can be used by the generator."}, \ - {"--patch <ReleasePatch>", "Specify the patch of the project.", - "This option specifies the patch of the project that will be " - "used by installer." }, - {"--vendor <ProjectVendor>", "Specify the vendor of the project.", - "This option specifies the vendor of the project that will be " - "used by installer." }, + {"--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." }, {0,0,0} }; |