cmake/Source/cmInstallTargetsCommand.cxx

59 lines
1.7 KiB
C++
Raw Normal View History

2016-10-30 18:24:19 +01:00
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
file Copyright.txt or https://cmake.org/licensing for details. */
#include "cmInstallTargetsCommand.h"
2018-01-26 17:06:56 +01:00
#include <unordered_map>
2017-04-14 19:02:05 +02:00
#include <utility>
#include "cmGlobalGenerator.h"
#include "cmMakefile.h"
#include "cmTarget.h"
class cmExecutionStatus;
// cmExecutableCommand
2016-07-09 11:21:54 +02:00
bool cmInstallTargetsCommand::InitialPass(std::vector<std::string> const& args,
cmExecutionStatus&)
{
2016-07-09 11:21:54 +02:00
if (args.size() < 2) {
this->SetError("called with incorrect number of arguments");
return false;
2016-07-09 11:21:54 +02:00
}
// Enable the install target.
2015-08-17 11:37:30 +02:00
this->Makefile->GetGlobalGenerator()->EnableInstallTarget();
2016-07-09 11:21:54 +02:00
cmTargets& tgts = this->Makefile->GetTargets();
std::vector<std::string>::const_iterator s = args.begin();
++s;
std::string runtime_dir = "/bin";
2016-07-09 11:21:54 +02:00
for (; s != args.end(); ++s) {
if (*s == "RUNTIME_DIRECTORY") {
++s;
2016-07-09 11:21:54 +02:00
if (s == args.end()) {
this->SetError("called with RUNTIME_DIRECTORY but no actual "
"directory");
return false;
2016-07-09 11:21:54 +02:00
}
runtime_dir = *s;
2016-07-09 11:21:54 +02:00
} else {
2016-10-30 18:24:19 +01:00
cmTargets::iterator ti = tgts.find(*s);
if (ti != tgts.end()) {
ti->second.SetInstallPath(args[0].c_str());
ti->second.SetRuntimeInstallPath(runtime_dir.c_str());
ti->second.SetHaveInstallRule(true);
} else {
std::string str = "Cannot find target: \"" + *s + "\" to install.";
this->SetError(str);
return false;
}
}
2016-07-09 11:21:54 +02:00
}
2016-07-09 11:21:54 +02:00
this->Makefile->GetGlobalGenerator()->AddInstallComponent(
this->Makefile->GetSafeDefinition("CMAKE_INSTALL_DEFAULT_COMPONENT_NAME"));
return true;
}