diff options
author | Brad King <brad.king@kitware.com> | 2006-03-04 00:29:35 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2006-03-04 00:29:35 (GMT) |
commit | 06846c4c07294ed460b0ebb2c775b385e2e6d9c9 (patch) | |
tree | b7443a5dce61fc3b5084cc17e2ed7930cc9c738b /Source/cmInstallTargetGenerator.h | |
parent | a2e136fd17b693765a4961220433bdf207930583 (diff) | |
download | CMake-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.h | 5 |
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 |