summaryrefslogtreecommitdiffstats
path: root/Source/cmInstallExportGenerator.h
diff options
context:
space:
mode:
authorDavid Cole <david.cole@kitware.com>2007-08-22 15:32:48 (GMT)
committerDavid Cole <david.cole@kitware.com>2007-08-22 15:32:48 (GMT)
commitef22ad6bec33cf2d9701732b6985744bf485cc06 (patch)
tree63604b75053a9144fb1f5ebede77248d881caf67 /Source/cmInstallExportGenerator.h
parenta43976e91d8550fea5bdc06d63725869ca2ffb17 (diff)
downloadCMake-ef22ad6bec33cf2d9701732b6985744bf485cc06.zip
CMake-ef22ad6bec33cf2d9701732b6985744bf485cc06.tar.gz
CMake-ef22ad6bec33cf2d9701732b6985744bf485cc06.tar.bz2
ENH: Handle FRAMEWORK and BUNDLE arguments in the INSTALL TARGETS command. Work in progress... More to come.
Diffstat (limited to 'Source/cmInstallExportGenerator.h')
-rw-r--r--Source/cmInstallExportGenerator.h9
1 files changed, 7 insertions, 2 deletions
diff --git a/Source/cmInstallExportGenerator.h b/Source/cmInstallExportGenerator.h
index 22e4a08..0559872 100644
--- a/Source/cmInstallExportGenerator.h
+++ b/Source/cmInstallExportGenerator.h
@@ -34,14 +34,19 @@ public:
cmTargetExport(cmTarget* tgt,
cmInstallTargetGenerator* archive,
cmInstallTargetGenerator* runtime,
- cmInstallTargetGenerator* library
+ cmInstallTargetGenerator* library,
+ cmInstallTargetGenerator* framework,
+ cmInstallTargetGenerator* bundle
) : Target(tgt), ArchiveGenerator(archive),
- RuntimeGenerator(runtime), LibraryGenerator(library) {}
+ RuntimeGenerator(runtime), LibraryGenerator(library),
+ FrameworkGenerator(framework), BundleGenerator(bundle) {}
cmTarget* Target;
cmInstallTargetGenerator* ArchiveGenerator;
cmInstallTargetGenerator* RuntimeGenerator;
cmInstallTargetGenerator* LibraryGenerator;
+ cmInstallTargetGenerator* FrameworkGenerator;
+ cmInstallTargetGenerator* BundleGenerator;
private:
cmTargetExport();
};