summaryrefslogtreecommitdiff
path: root/Source/cmInstallDirectoryGenerator.h
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2006-08-21 16:55:03 -0400
committerBrad King <brad.king@kitware.com>2006-08-21 16:55:03 -0400
commitbed79f6c6b47b2c0661da67799ec37fce8905c54 (patch)
treebdf2a3211652d8587c710d14dbb0f323fb40e617 /Source/cmInstallDirectoryGenerator.h
parentf1ea7e88dc8322d4344e6b7acde6bf7bcffd7806 (diff)
downloadcmake-bed79f6c6b47b2c0661da67799ec37fce8905c54.tar.gz
ENH: Implemented INSTALL(DIRECTORY) command and added a test. Re-organized cmFileCommand's implementation of FILE(INSTALL) a bit to help out. This addresses bug#1694 and partially addresses bug#2691.
Diffstat (limited to 'Source/cmInstallDirectoryGenerator.h')
-rw-r--r--Source/cmInstallDirectoryGenerator.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/Source/cmInstallDirectoryGenerator.h b/Source/cmInstallDirectoryGenerator.h
index 6b36434db3..296130ece0 100644
--- a/Source/cmInstallDirectoryGenerator.h
+++ b/Source/cmInstallDirectoryGenerator.h
@@ -30,7 +30,8 @@ public:
const char* file_permissions,
const char* dir_permissions,
std::vector<std::string> const& configurations,
- const char* component);
+ const char* component,
+ const char* literal_args);
virtual ~cmInstallDirectoryGenerator();
protected:
@@ -41,6 +42,7 @@ protected:
std::string DirPermissions;
std::vector<std::string> Configurations;
std::string Component;
+ std::string LiteralArguments;
};
#endif