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/cmInstallGenerator.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/cmInstallGenerator.h')
-rw-r--r-- | Source/cmInstallGenerator.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/cmInstallGenerator.h b/Source/cmInstallGenerator.h index 53c8c43..df165c0 100644 --- a/Source/cmInstallGenerator.h +++ b/Source/cmInstallGenerator.h @@ -38,7 +38,8 @@ public: std::ostream& os, const char* dest, int type, const char* file, bool optional = false, const char* properties = 0, - const char* permissions = 0, + const char* permissions_file = 0, + const char* permissions_dir = 0, std::vector<std::string> const& configurations = std::vector<std::string>(), const char* component = 0, |