mirror of
https://github.com/reactos/CMake.git
synced 2024-12-04 01:22:28 +00:00
3bb707f0a1
Improve formatting, primarily by: * Adding links to relevant commands, properties, generators, and so on. * Converting code, symbols, paths, and so on to fixed-width fonts. * Hard wrapping lines to 80 characters or less.
21 lines
844 B
ReStructuredText
21 lines
844 B
ReStructuredText
CPACK_INCLUDE_TOPLEVEL_DIRECTORY
|
|
--------------------------------
|
|
|
|
Boolean toggle to include/exclude top level directory.
|
|
|
|
When preparing a package CPack installs the item under the so-called
|
|
top level directory. The purpose of is to include (set to ``1`` or ``ON`` or
|
|
``TRUE``) the top level directory in the package or not (set to ``0`` or
|
|
``OFF`` or ``FALSE``).
|
|
|
|
Each CPack generator has 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 by
|
|
setting this variable.
|
|
|
|
There is a similar variable
|
|
:variable:`CPACK_COMPONENT_INCLUDE_TOPLEVEL_DIRECTORY` which may be used
|
|
to override the behavior for the component packaging
|
|
case which may have different default value for historical (now
|
|
backward compatibility) reason.
|