Skip to content
Snippets Groups Projects
Commit 5d17b68c authored by Brad King's avatar Brad King Committed by Kitware Robot
Browse files

Merge topic 'productbuild_resources'

734581f4 CPack: Add support for CPACK_PRODUCTBULID_RESOURCES_DIR
parents 168420f3 734581f4
No related branches found
No related tags found
No related merge requests found
productbuild_resources
----------------------
* The :module:`CPackProductBuild` module gained a new
:variable:`CPACK_PRODUCTBUILD_RESOURCES_DIR` variable to
specify resources to be copied into the ``Resources``
directory.
......@@ -46,3 +46,11 @@
#
# Specify a specific keychain to search for the signing identity.
#
#
# .. variable:: CPACK_PRODUCTBUILD_RESOURCES_DIR
#
# If specified the productbuild generator copies files from this directory
# (including subdirectories) to the ``Resources`` directory. This is done
# before the :variable:`CPACK_RESOURCE_FILE_WELCOME`,
# :variable:`CPACK_RESOURCE_FILE_README`, and
# :variable:`CPACK_RESOURCE_FILE_LICENSE` files are copied.
......@@ -59,12 +59,25 @@ int cmCPackProductBuildGenerator::PackageFiles()
}
}
// Copy or create all of the resource files we need.
std::string resDir = packageDirFileName + "/Contents";
if (this->IsSet("CPACK_PRODUCTBUILD_RESOURCES_DIR")) {
std::string userResDir =
this->GetOption("CPACK_PRODUCTBUILD_RESOURCES_DIR");
if (!cmSystemTools::CopyADirectory(userResDir, resDir)) {
cmCPackLogger(cmCPackLog::LOG_ERROR, "Problem copying the resource files"
<< std::endl);
return 0;
}
}
// Copy or create all of the resource files we need.
if (!this->CopyCreateResourceFile("License", resDir) ||
!this->CopyCreateResourceFile("ReadMe", resDir) ||
!this->CopyCreateResourceFile("Welcome", resDir)) {
cmCPackLogger(cmCPackLog::LOG_ERROR, "Problem copying the resource files"
cmCPackLogger(cmCPackLog::LOG_ERROR,
"Problem copying the License, ReadMe and Welcome files"
<< std::endl);
return 0;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment