2001-05-23 15:31:43 +00:00
|
|
|
/*=========================================================================
|
|
|
|
|
2002-10-23 22:03:27 +00:00
|
|
|
Program: CMake - Cross-Platform Makefile Generator
|
2001-05-23 15:31:43 +00:00
|
|
|
Module: $RCSfile$
|
|
|
|
Language: C++
|
|
|
|
Date: $Date$
|
|
|
|
Version: $Revision$
|
|
|
|
|
2002-10-23 22:03:27 +00:00
|
|
|
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 15:31:43 +00:00
|
|
|
|
2002-01-21 20:30:43 +00: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 15:31:43 +00:00
|
|
|
|
|
|
|
=========================================================================*/
|
|
|
|
#include "cmInstallTargetsCommand.h"
|
|
|
|
|
|
|
|
// cmExecutableCommand
|
2006-05-11 19:50:11 +00:00
|
|
|
bool cmInstallTargetsCommand
|
2008-01-23 15:28:26 +00:00
|
|
|
::InitialPass(std::vector<std::string> const& args, cmExecutionStatus &)
|
2001-05-23 15:31:43 +00:00
|
|
|
{
|
2002-12-11 23:13:33 +00:00
|
|
|
if(args.size() < 2 )
|
2001-05-23 15:31:43 +00:00
|
|
|
{
|
|
|
|
this->SetError("called with incorrect number of arguments");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2006-08-31 14:47:00 +00:00
|
|
|
// Enable the install target.
|
|
|
|
this->Makefile->GetLocalGenerator()
|
|
|
|
->GetGlobalGenerator()->EnableInstallTarget();
|
|
|
|
|
2006-03-15 16:02:08 +00:00
|
|
|
cmTargets &tgts = this->Makefile->GetTargets();
|
2001-09-20 19:08:30 +00:00
|
|
|
std::vector<std::string>::const_iterator s = args.begin();
|
2001-05-23 15:31:43 +00:00
|
|
|
++s;
|
2004-01-27 17:37:30 +00:00
|
|
|
std::string runtime_dir = "/bin";
|
2001-05-23 15:31:43 +00:00
|
|
|
for (;s != args.end(); ++s)
|
|
|
|
{
|
2004-01-27 17:37:30 +00:00
|
|
|
if (*s == "RUNTIME_DIRECTORY")
|
|
|
|
{
|
|
|
|
++s;
|
|
|
|
if ( s == args.end() )
|
|
|
|
{
|
2006-05-11 19:50:11 +00:00
|
|
|
this->SetError("called with RUNTIME_DIRECTORY but no actual "
|
|
|
|
"directory");
|
2004-01-27 17:37:30 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
runtime_dir = *s;
|
|
|
|
}
|
|
|
|
else if (tgts.find(*s) != tgts.end())
|
2001-05-23 15:31:43 +00:00
|
|
|
{
|
|
|
|
tgts[*s].SetInstallPath(args[0].c_str());
|
2004-01-27 17:37:30 +00:00
|
|
|
tgts[*s].SetRuntimeInstallPath(runtime_dir.c_str());
|
2006-02-19 22:27:47 +00:00
|
|
|
tgts[*s].SetHaveInstallRule(true);
|
2001-05-23 15:31:43 +00:00
|
|
|
}
|
2005-12-15 17:01:28 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
std::string str = "Cannot find target: \"" + *s + "\" to install.";
|
|
|
|
this->SetError(str.c_str());
|
|
|
|
return false;
|
|
|
|
}
|
2001-05-23 15:31:43 +00:00
|
|
|
}
|
2005-12-15 17:01:28 +00:00
|
|
|
|
2001-05-23 15:31:43 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|