diff options
author | Sergey Larin <cerg2010cerg2010@mail.ru> | 2019-11-05 12:23:47 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2019-11-08 19:09:25 (GMT) |
commit | e6069613a111ff30e9bb9a0e7294b2ea9da574c1 (patch) | |
tree | 770b47f0d5ef129609fd247c7e74b356c4dc369c /Source/CPack/cmCPackPackageMakerGenerator.cxx | |
parent | c9d5f80d775d33b7334af6421b77cc45cfab5b27 (diff) | |
download | CMake-e6069613a111ff30e9bb9a0e7294b2ea9da574c1.zip CMake-e6069613a111ff30e9bb9a0e7294b2ea9da574c1.tar.gz CMake-e6069613a111ff30e9bb9a0e7294b2ea9da574c1.tar.bz2 |
CPack: Set background image in macOS installer
Now you can set a background image and it's parameters in
productbuild and PackageMaker based installers.
Diffstat (limited to 'Source/CPack/cmCPackPackageMakerGenerator.cxx')
-rw-r--r-- | Source/CPack/cmCPackPackageMakerGenerator.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/CPack/cmCPackPackageMakerGenerator.cxx b/Source/CPack/cmCPackPackageMakerGenerator.cxx index c5ba726..12ea97b 100644 --- a/Source/CPack/cmCPackPackageMakerGenerator.cxx +++ b/Source/CPack/cmCPackPackageMakerGenerator.cxx @@ -279,7 +279,7 @@ int cmCPackPackageMakerGenerator::PackageFiles() } else { // We have built the package in place. Generate the // distribution.dist file to describe it for the installer. - WriteDistributionFile(packageDirFileName.c_str()); + WriteDistributionFile(packageDirFileName.c_str(), "PACKAGEMAKER"); } std::string tmpFile = cmStrCat(this->GetOption("CPACK_TOPLEVEL_DIRECTORY"), |