CMake/Source/cmInstallTargetsCommand.cxx

68 lines
1.9 KiB
C++
Raw Normal View History

2001-05-23 19:31:43 +04:00
/*=========================================================================
Program: CMake - Cross-Platform Makefile Generator
2001-05-23 19:31:43 +04:00
Module: $RCSfile$
Language: C++
Date: $Date$
Version: $Revision$
Copyright (c) 2002 Kitware, Inc., Insight Consortium. All rights reserved.
See Copyright.txt or http://www.cmake.org/HTML/Copyright.html for details.
2001-05-23 19:31:43 +04:00
2002-01-21 23:30:43 +03:00
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notices for more information.
2001-05-23 19:31:43 +04:00
=========================================================================*/
#include "cmInstallTargetsCommand.h"
// cmExecutableCommand
2006-05-11 23:50:11 +04:00
bool cmInstallTargetsCommand
::InitialPass(std::vector<std::string> const& args, cmExecutionStatus &)
2001-05-23 19:31:43 +04:00
{
if(args.size() < 2 )
2001-05-23 19:31:43 +04:00
{
this->SetError("called with incorrect number of arguments");
return false;
}
// Enable the install target.
this->Makefile->GetLocalGenerator()
->GetGlobalGenerator()->EnableInstallTarget();
2006-03-15 19:02:08 +03:00
cmTargets &tgts = this->Makefile->GetTargets();
std::vector<std::string>::const_iterator s = args.begin();
2001-05-23 19:31:43 +04:00
++s;
std::string runtime_dir = "/bin";
2001-05-23 19:31:43 +04:00
for (;s != args.end(); ++s)
{
if (*s == "RUNTIME_DIRECTORY")
{
++s;
if ( s == args.end() )
{
2006-05-11 23:50:11 +04:00
this->SetError("called with RUNTIME_DIRECTORY but no actual "
"directory");
return false;
}
runtime_dir = *s;
}
else if (tgts.find(*s) != tgts.end())
2001-05-23 19:31:43 +04:00
{
tgts[*s].SetInstallPath(args[0].c_str());
tgts[*s].SetRuntimeInstallPath(runtime_dir.c_str());
tgts[*s].SetHaveInstallRule(true);
2001-05-23 19:31:43 +04:00
}
else
{
std::string str = "Cannot find target: \"" + *s + "\" to install.";
this->SetError(str.c_str());
return false;
}
2001-05-23 19:31:43 +04:00
}
2001-05-23 19:31:43 +04:00
return true;
}