diff options
author | Brad King <brad.king@kitware.com> | 2008-01-28 19:46:16 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2008-01-28 19:46:16 (GMT) |
commit | e3b1bdb058ac23bc535b941fc2ed66a410932d74 (patch) | |
tree | 9cecfe783ed59bb4995c206967b5416c0ee689dc /Source/cmExportInstallFileGenerator.cxx | |
parent | 437043bb04da113bf822aa42d5cf3a3cc3366be1 (diff) | |
download | CMake-e3b1bdb058ac23bc535b941fc2ed66a410932d74.zip CMake-e3b1bdb058ac23bc535b941fc2ed66a410932d74.tar.gz CMake-e3b1bdb058ac23bc535b941fc2ed66a410932d74.tar.bz2 |
ENH: Support exporting/importing of AppBundle targets.
- Imported bundles have the MACOSX_BUNDLE property set
- Added cmTarget::IsAppBundleOnApple method to simplify checks
- Document BUNDLE keyword in INSTALL command
- Updated IMPORTED_LOCATION property documentation for bundles
- Updated ExportImport test to test bundles
Diffstat (limited to 'Source/cmExportInstallFileGenerator.cxx')
-rw-r--r-- | Source/cmExportInstallFileGenerator.cxx | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/Source/cmExportInstallFileGenerator.cxx b/Source/cmExportInstallFileGenerator.cxx index f378106..fe6cdb5 100644 --- a/Source/cmExportInstallFileGenerator.cxx +++ b/Source/cmExportInstallFileGenerator.cxx @@ -160,8 +160,8 @@ cmExportInstallFileGenerator te->RuntimeGenerator, properties); this->SetImportLocationProperty(config, suffix, te->FrameworkGenerator, properties); - - // TODO: Bundles? + this->SetImportLocationProperty(config, suffix, + te->BundleGenerator, properties); // If any file location was set for the target add it to the // import file. @@ -227,12 +227,17 @@ cmExportInstallFileGenerator std::string fname = itgen->GetInstallFilename(config); value += fname; - // Fix name for frameworks. + // Fix name for frameworks and bundles. if(itgen->GetTarget()->IsFrameworkOnApple()) { value += ".framework/"; value += fname; } + else if(itgen->GetTarget()->IsAppBundleOnApple()) + { + value += ".app/Contents/MacOS/"; + value += fname; + } // Store the property. properties[prop] = value; |