summaryrefslogtreecommitdiffstats
path: root/Source/cmLocalGenerator.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2007-05-23 22:22:52 (GMT)
committerBrad King <brad.king@kitware.com>2007-05-23 22:22:52 (GMT)
commit9d75da9eafd72a9a78bab06081876d6ca256a24f (patch)
treeb33d6be6d1aa15902843dfe4d20b2295f50fb771 /Source/cmLocalGenerator.cxx
parent6a145fb2bece19f04079778c3cb3326cd37a78ee (diff)
downloadCMake-9d75da9eafd72a9a78bab06081876d6ca256a24f.zip
CMake-9d75da9eafd72a9a78bab06081876d6ca256a24f.tar.gz
CMake-9d75da9eafd72a9a78bab06081876d6ca256a24f.tar.bz2
ENH: Removed unused code now that INSTALL_FILES and INSTALL_PROGRAMS are not targets.
Diffstat (limited to 'Source/cmLocalGenerator.cxx')
-rw-r--r--Source/cmLocalGenerator.cxx28
1 files changed, 0 insertions, 28 deletions
diff --git a/Source/cmLocalGenerator.cxx b/Source/cmLocalGenerator.cxx
index 874779c..f92c48b 100644
--- a/Source/cmLocalGenerator.cxx
+++ b/Source/cmLocalGenerator.cxx
@@ -2451,34 +2451,6 @@ cmLocalGenerator
#endif
}
break;
- case cmTarget::INSTALL_FILES:
- {
- // Use a file install generator.
- const char* no_permissions = "";
- const char* no_rename = "";
- const char* no_component = "";
- std::vector<std::string> no_configurations;
- cmInstallFilesGenerator g(l->second.GetSourceLists(),
- destination.c_str(), false,
- no_permissions, no_configurations,
- no_component, no_rename);
- g.Generate(os, config, configurationTypes);
- }
- break;
- case cmTarget::INSTALL_PROGRAMS:
- {
- // Use a file install generator.
- const char* no_permissions = "";
- const char* no_rename = "";
- const char* no_component = "";
- std::vector<std::string> no_configurations;
- cmInstallFilesGenerator g(l->second.GetSourceLists(),
- destination.c_str(), true,
- no_permissions, no_configurations,
- no_component, no_rename);
- g.Generate(os, config, configurationTypes);
- }
- break;
case cmTarget::UTILITY:
default:
break;