diff options
author | Brad King <brad.king@kitware.com> | 2006-08-17 18:48:54 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2006-08-17 18:48:54 (GMT) |
commit | 8a72d43c176df44818154019248ad28d043f5dde (patch) | |
tree | 549347ba1e8ebb0fefec838132eff5fd98d74965 /Source/cmInstallFilesGenerator.h | |
parent | b642ffa7a82922d99475fa38e9a7f317e029ebf3 (diff) | |
download | CMake-8a72d43c176df44818154019248ad28d043f5dde.zip CMake-8a72d43c176df44818154019248ad28d043f5dde.tar.gz CMake-8a72d43c176df44818154019248ad28d043f5dde.tar.bz2 |
ENH: Started implementing INSTALL(DIRECTORY) command mode. This is not yet finished so it is undocumented and there is no test. These changes also separate the notions of file and directory permissions.
Diffstat (limited to 'Source/cmInstallFilesGenerator.h')
-rw-r--r-- | Source/cmInstallFilesGenerator.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmInstallFilesGenerator.h b/Source/cmInstallFilesGenerator.h index 4589b1e..400d29a 100644 --- a/Source/cmInstallFilesGenerator.h +++ b/Source/cmInstallFilesGenerator.h @@ -27,7 +27,7 @@ class cmInstallFilesGenerator: public cmInstallGenerator public: cmInstallFilesGenerator(std::vector<std::string> const& files, const char* dest, bool programs, - const char* permissions, + const char* file_permissions, std::vector<std::string> const& configurations, const char* component, const char* rename); @@ -38,7 +38,7 @@ protected: std::vector<std::string> Files; std::string Destination; bool Programs; - std::string Permissions; + std::string FilePermissions; std::vector<std::string> Configurations; std::string Component; std::string Rename; |