summaryrefslogtreecommitdiffstats
path: root/Source/cmInstallTargetGenerator.h
diff options
context:
space:
mode:
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