summaryrefslogtreecommitdiffstats
path: root/Source/cmInstallTargetGenerator.h
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2006-08-17 18:48:54 (GMT)
committerBrad King <brad.king@kitware.com>2006-08-17 18:48:54 (GMT)
commit8a72d43c176df44818154019248ad28d043f5dde (patch)
tree549347ba1e8ebb0fefec838132eff5fd98d74965 /Source/cmInstallTargetGenerator.h
parentb642ffa7a82922d99475fa38e9a7f317e029ebf3 (diff)
downloadCMake-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/cmInstallTargetGenerator.h')
-rw-r--r--Source/cmInstallTargetGenerator.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmInstallTargetGenerator.h b/Source/cmInstallTargetGenerator.h
index 693a908..63eea30 100644
--- a/Source/cmInstallTargetGenerator.h
+++ b/Source/cmInstallTargetGenerator.h
@@ -29,7 +29,7 @@ class cmInstallTargetGenerator: public cmInstallGenerator
public:
cmInstallTargetGenerator(
cmTarget& t, const char* dest, bool implib,
- const char* permissions = "",
+ const char* file_permissions = "",
std::vector<std::string> const& configurations
= std::vector<std::string>(),
const char* component = ""
@@ -47,7 +47,7 @@ protected:
cmTarget* Target;
std::string Destination;
bool ImportLibrary;
- std::string Permissions;
+ std::string FilePermissions;
std::vector<std::string> Configurations;
std::string Component;
};