Document CPACK_COMPONENT_INCLUDE_TOPLEVEL_DIRECTORY and fix some typo.
This commit is contained in:
parent
3eecc12df0
commit
2aad678f23
|
@ -31,7 +31,7 @@ void cmCPackDocumentVariables::DefineVariables(cmake* cm)
|
|||
"Each CPack generator as a built-in default value for this"
|
||||
" variable. E.g. Archive generators (ZIP, TGZ, ...) includes"
|
||||
" the top level whereas RPM or DEB don't. The user may override"
|
||||
" the default value byt setting this variable.\n"
|
||||
" the default value by setting this variable.\n"
|
||||
"There is a similar variable "
|
||||
"CPACK_COMPONENT_INCLUDE_TOPLEVEL_DIRECTORY "
|
||||
"which may be used to override the behavior for the component"
|
||||
|
@ -39,6 +39,16 @@ void cmCPackDocumentVariables::DefineVariables(cmake* cm)
|
|||
" historical (now backward compatibility) reason.", false,
|
||||
"Variables common to all CPack generators");
|
||||
|
||||
cm->DefineProperty
|
||||
("CPACK_COMPONENT_INCLUDE_TOPLEVEL_DIRECTORY", cmProperty::VARIABLE,
|
||||
"Boolean toggle to include/exclude top level directory "
|
||||
"(component case).",
|
||||
"Similar usage as CPACK_INCLUDE_TOPLEVEL_DIRECTORY"
|
||||
" but for the component case. "
|
||||
"See CPACK_INCLUDE_TOPLEVEL_DIRECTORY documentation for"
|
||||
" the detail.", false,
|
||||
"Variables common to all CPack generators");
|
||||
|
||||
cm->DefineProperty
|
||||
("CPACK_SET_DESTDIR", cmProperty::VARIABLE,
|
||||
"Boolean toggle to make CPack use DESTDIR mechanism when"
|
||||
|
|
Loading…
Reference in New Issue