summaryrefslogtreecommitdiffstats
path: root/Source/cmInstallCommand.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2006-08-31 14:47:00 (GMT)
committerBrad King <brad.king@kitware.com>2006-08-31 14:47:00 (GMT)
commit239fce5caa59daeaea830aa38e0cb576599221da (patch)
treeff4824f735b799f55f79da7ba394d54c77d32b88 /Source/cmInstallCommand.cxx
parent8ffb32369fedfbbd59631bbd9472c5fb1cd462f7 (diff)
downloadCMake-239fce5caa59daeaea830aa38e0cb576599221da.zip
CMake-239fce5caa59daeaea830aa38e0cb576599221da.tar.gz
CMake-239fce5caa59daeaea830aa38e0cb576599221da.tar.bz2
ENH: Do not generate install target unless some INSTALL or INSTALL_* commands have been used. This addresses bug#2827.
Diffstat (limited to 'Source/cmInstallCommand.cxx')
-rw-r--r--Source/cmInstallCommand.cxx4
1 files changed, 4 insertions, 0 deletions
diff --git a/Source/cmInstallCommand.cxx b/Source/cmInstallCommand.cxx
index 9cb37c9..20081eb 100644
--- a/Source/cmInstallCommand.cxx
+++ b/Source/cmInstallCommand.cxx
@@ -33,6 +33,10 @@ bool cmInstallCommand::InitialPass(std::vector<std::string> const& args)
return true;
}
+ // Enable the install target.
+ this->Makefile->GetLocalGenerator()
+ ->GetGlobalGenerator()->EnableInstallTarget();
+
// Switch among the command modes.
if(args[0] == "SCRIPT")
{