diff options
author | Brad King <brad.king@kitware.com> | 2006-08-31 14:47:00 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2006-08-31 14:47:00 (GMT) |
commit | 239fce5caa59daeaea830aa38e0cb576599221da (patch) | |
tree | ff4824f735b799f55f79da7ba394d54c77d32b88 /Source/cmInstallFilesCommand.cxx | |
parent | 8ffb32369fedfbbd59631bbd9472c5fb1cd462f7 (diff) | |
download | CMake-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/cmInstallFilesCommand.cxx')
-rw-r--r-- | Source/cmInstallFilesCommand.cxx | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Source/cmInstallFilesCommand.cxx b/Source/cmInstallFilesCommand.cxx index 5b75456..12b7fdc 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); |