summaryrefslogtreecommitdiffstats
path: root/Source/CPack/cmCPackBundleGenerator.cxx
diff options
context:
space:
mode:
authorClinton Stimpson <clinton@elemtech.com>2011-03-28 15:11:27 (GMT)
committerBrad King <brad.king@kitware.com>2011-03-31 17:33:10 (GMT)
commit2973c1fbebcbaff944ff2d75e5a44437bf9725c7 (patch)
tree5da5072ce3961e4ae4c0f824bdb929cac0b9d6fd /Source/CPack/cmCPackBundleGenerator.cxx
parent64a5e209998f12662a56346f855b1973cbbd0440 (diff)
downloadCMake-2973c1fbebcbaff944ff2d75e5a44437bf9725c7.zip
CMake-2973c1fbebcbaff944ff2d75e5a44437bf9725c7.tar.gz
CMake-2973c1fbebcbaff944ff2d75e5a44437bf9725c7.tar.bz2
Add component support to DragNDrop generator.
Diffstat (limited to 'Source/CPack/cmCPackBundleGenerator.cxx')
-rw-r--r--Source/CPack/cmCPackBundleGenerator.cxx7
1 files changed, 6 insertions, 1 deletions
diff --git a/Source/CPack/cmCPackBundleGenerator.cxx b/Source/CPack/cmCPackBundleGenerator.cxx
index 06a0509..af78e78 100644
--- a/Source/CPack/cmCPackBundleGenerator.cxx
+++ b/Source/CPack/cmCPackBundleGenerator.cxx
@@ -165,5 +165,10 @@ int cmCPackBundleGenerator::PackageFiles()
cmSystemTools::SetPermissions(command_target.str().c_str(), 0777);
}
- return this->CreateDMG();
+ return this->CreateDMG(toplevel, packageFileNames[0]);
+}
+
+bool cmCPackBundleGenerator::SupportsComponentInstallation() const
+{
+ return false;
}