diff options
author | Brad King <brad.king@kitware.com> | 2006-09-08 14:39:51 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2006-09-08 14:39:51 (GMT) |
commit | cff915cb8e5dbac01bd94964c2b9f1df6fb84a71 (patch) | |
tree | 82a8b402340a36924dd0df108021e9bba28bd835 | |
parent | e37ab55fef73bf4865ead0e7106438ceb8981ba1 (diff) | |
download | CMake-cff915cb8e5dbac01bd94964c2b9f1df6fb84a71.zip CMake-cff915cb8e5dbac01bd94964c2b9f1df6fb84a71.tar.gz CMake-cff915cb8e5dbac01bd94964c2b9f1df6fb84a71.tar.bz2 |
STYLE: Fixed line-too-long.
-rw-r--r-- | Source/cmInstallCommand.cxx | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Source/cmInstallCommand.cxx b/Source/cmInstallCommand.cxx index 506489e..0ba42d2 100644 --- a/Source/cmInstallCommand.cxx +++ b/Source/cmInstallCommand.cxx @@ -410,7 +410,8 @@ bool cmInstallCommand::HandleTargetsMode(std::vector<std::string> const& args) { // The DLL uses the RUNTIME properties. this->Makefile->AddInstallGenerator( - new cmInstallTargetGenerator(target, runtime_dest.c_str(), false, + new cmInstallTargetGenerator(target, runtime_dest.c_str(), + false, runtime_permissions.c_str(), runtime_configurations, runtime_component.c_str())); @@ -423,7 +424,8 @@ bool cmInstallCommand::HandleTargetsMode(std::vector<std::string> const& args) { // The shared library uses the LIBRARY properties. this->Makefile->AddInstallGenerator( - new cmInstallTargetGenerator(target, library_dest.c_str(), false, + new cmInstallTargetGenerator(target, library_dest.c_str(), + false, library_permissions.c_str(), library_configurations, library_component.c_str())); |