summaryrefslogtreecommitdiff
path: root/Source/cmInstallFilesCommand.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2006-08-31 10:47:00 -0400
committerBrad King <brad.king@kitware.com>2006-08-31 10:47:00 -0400
commit239fce5caa59daeaea830aa38e0cb576599221da (patch)
treeff4824f735b799f55f79da7ba394d54c77d32b88 /Source/cmInstallFilesCommand.cxx
parent8ffb32369fedfbbd59631bbd9472c5fb1cd462f7 (diff)
downloadcmake-239fce5caa59daeaea830aa38e0cb576599221da.tar.gz
ENH: Do not generate install target unless some INSTALL or INSTALL_* commands have been used. This addresses bug#2827.
Diffstat (limited to 'Source/cmInstallFilesCommand.cxx')
-rw-r--r--Source/cmInstallFilesCommand.cxx5
1 files changed, 5 insertions, 0 deletions
diff --git a/Source/cmInstallFilesCommand.cxx b/Source/cmInstallFilesCommand.cxx
index 5b75456c2b..12b7fdc708 100644
--- a/Source/cmInstallFilesCommand.cxx
+++ b/Source/cmInstallFilesCommand.cxx
@@ -25,6 +25,11 @@ bool cmInstallFilesCommand
this->SetError("called with incorrect number of arguments");
return false;
}
+
+ // Enable the install target.
+ this->Makefile->GetLocalGenerator()
+ ->GetGlobalGenerator()->EnableInstallTarget();
+
std::vector<std::string> args;
this->Makefile->ExpandSourceListArguments(argsIn, args, 2);