summaryrefslogtreecommitdiff
path: root/Source/cmInstallFilesGenerator.h
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2006-03-30 13:33:48 -0500
committerBrad King <brad.king@kitware.com>2006-03-30 13:33:48 -0500
commit08b14163ee2cc9cced08d80b2c81b29c83072229 (patch)
treeaabd429ef1d4d93a39429f192e5b56b5b0feb6b4 /Source/cmInstallFilesGenerator.h
parent3cf3fc510febc42af0db07c71c7c3925724b3201 (diff)
downloadcmake-08b14163ee2cc9cced08d80b2c81b29c83072229.tar.gz
ENH: Added named component installation implementation. Installation behavior should be unchanged unless -DCOMPONENT=<name> is specified when cmake_install.cmake is invoked.
Diffstat (limited to 'Source/cmInstallFilesGenerator.h')
-rw-r--r--Source/cmInstallFilesGenerator.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/Source/cmInstallFilesGenerator.h b/Source/cmInstallFilesGenerator.h
index dc2094fc3b..7732ff92a9 100644
--- a/Source/cmInstallFilesGenerator.h
+++ b/Source/cmInstallFilesGenerator.h
@@ -27,7 +27,9 @@ class cmInstallFilesGenerator: public cmInstallGenerator
public:
cmInstallFilesGenerator(std::vector<std::string> const& files,
const char* dest, bool programs,
- const char* permissions, const char* rename);
+ const char* permissions,
+ const char* component,
+ const char* rename);
virtual ~cmInstallFilesGenerator();
protected:
@@ -36,6 +38,7 @@ protected:
std::string Destination;
bool Programs;
std::string Permissions;
+ std::string Component;
std::string Rename;
};