diff options
Diffstat (limited to 'Source/cmInstallTargetGenerator.h')
-rw-r--r-- | Source/cmInstallTargetGenerator.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Source/cmInstallTargetGenerator.h b/Source/cmInstallTargetGenerator.h index 482e3f4..7d88bde 100644 --- a/Source/cmInstallTargetGenerator.h +++ b/Source/cmInstallTargetGenerator.h @@ -28,7 +28,8 @@ class cmInstallTargetGenerator: public cmInstallGenerator { public: cmInstallTargetGenerator(cmTarget& t, const char* dest, bool implib, - const char* permissions = ""); + const char* permissions = "", + const char* component = ""); virtual ~cmInstallTargetGenerator(); protected: @@ -43,6 +44,7 @@ protected: std::string Destination; bool ImportLibrary; std::string Permissions; + std::string Component; }; #endif |