summaryrefslogtreecommitdiffstats
path: root/Source/cmInstallTargetGenerator.h
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2006-03-04 00:29:35 (GMT)
committerBrad King <brad.king@kitware.com>2006-03-04 00:29:35 (GMT)
commit06846c4c07294ed460b0ebb2c775b385e2e6d9c9 (patch)
treeb7443a5dce61fc3b5084cc17e2ed7930cc9c738b /Source/cmInstallTargetGenerator.h
parenta2e136fd17b693765a4961220433bdf207930583 (diff)
downloadCMake-06846c4c07294ed460b0ebb2c775b385e2e6d9c9.zip
CMake-06846c4c07294ed460b0ebb2c775b385e2e6d9c9.tar.gz
CMake-06846c4c07294ed460b0ebb2c775b385e2e6d9c9.tar.bz2
ENH: Added PERMISSIONS option to the TARGETS mode of the INSTALL command.
Diffstat (limited to 'Source/cmInstallTargetGenerator.h')
-rw-r--r--Source/cmInstallTargetGenerator.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/Source/cmInstallTargetGenerator.h b/Source/cmInstallTargetGenerator.h
index 8ae834b..482e3f4 100644
--- a/Source/cmInstallTargetGenerator.h
+++ b/Source/cmInstallTargetGenerator.h
@@ -27,8 +27,8 @@ class cmTarget;
class cmInstallTargetGenerator: public cmInstallGenerator
{
public:
- cmInstallTargetGenerator(cmTarget& t, const char* dest,
- bool implib = false);
+ cmInstallTargetGenerator(cmTarget& t, const char* dest, bool implib,
+ const char* permissions = "");
virtual ~cmInstallTargetGenerator();
protected:
@@ -42,6 +42,7 @@ protected:
cmTarget* Target;
std::string Destination;
bool ImportLibrary;
+ std::string Permissions;
};
#endif