diff options
author | Andrew Fuller <afuller@teradici.com> | 2020-01-14 23:27:22 (GMT) |
---|---|---|
committer | Andrew Fuller <afuller@teradici.com> | 2020-01-16 16:04:35 (GMT) |
commit | 6d6f4b93164313ae8f6dfbaabc579c48732c2769 (patch) | |
tree | 50f47873eedf6dbe11a0acc335b0277a3b303995 /Help | |
parent | b53230fbeeacd367f392ae5a19bde98fa67986e8 (diff) | |
download | CMake-6d6f4b93164313ae8f6dfbaabc579c48732c2769.zip CMake-6d6f4b93164313ae8f6dfbaabc579c48732c2769.tar.gz CMake-6d6f4b93164313ae8f6dfbaabc579c48732c2769.tar.bz2 |
CPack/DragNDrop: Support CPACK_DMG_<component>_FILE_NAME
Diffstat (limited to 'Help')
-rw-r--r-- | Help/cpack_gen/dmg.rst | 7 | ||||
-rw-r--r-- | Help/release/dev/custom-dmg-names.rst | 7 |
2 files changed, 14 insertions, 0 deletions
diff --git a/Help/cpack_gen/dmg.rst b/Help/cpack_gen/dmg.rst index 1e37889..35320c2 100644 --- a/Help/cpack_gen/dmg.rst +++ b/Help/cpack_gen/dmg.rst @@ -81,6 +81,13 @@ on macOS: ``<language>.menu.txt`` and ``<language>.license.txt`` in the directory specified by the :variable:`CPACK_DMG_SLA_DIR` variable. +.. variable:: CPACK_DMG_<component>_FILE_NAME + + File name when packaging ``<component>`` as its own DMG + (``CPACK_COMPONENTS_GROUPING`` set to IGNORE). + + - Default: ``CPACK_PACKAGE_FILE_NAME-<component>`` + .. variable:: CPACK_COMMAND_HDIUTIL Path to the ``hdiutil(1)`` command used to operate on disk image files on diff --git a/Help/release/dev/custom-dmg-names.rst b/Help/release/dev/custom-dmg-names.rst new file mode 100644 index 0000000..73a70a1 --- /dev/null +++ b/Help/release/dev/custom-dmg-names.rst @@ -0,0 +1,7 @@ +custom-dmg-names +---------------- + +* The :cpack_gen:`CPack DragNDrop Generator` learned to use + the :variable:`CPACK_DMG_<component>_FILE_NAME` variable + to set a custom filename when packaging components into + their own DMGs. |