2001-05-23 19:31:43 +04:00
|
|
|
/*=========================================================================
|
|
|
|
|
2002-10-24 02:03:27 +04:00
|
|
|
Program: CMake - Cross-Platform Makefile Generator
|
2001-05-23 19:31:43 +04:00
|
|
|
Module: $RCSfile$
|
|
|
|
Language: C++
|
|
|
|
Date: $Date$
|
|
|
|
Version: $Revision$
|
|
|
|
|
2002-10-24 02:03:27 +04: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 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)
|
2001-05-23 19:31:43 +04:00
|
|
|
{
|
2002-12-12 02:13:33 +03:00
|
|
|
if(args.size() < 2 )
|
2001-05-23 19:31:43 +04:00
|
|
|
{
|
|
|
|
this->SetError("called with incorrect number of arguments");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2006-08-31 18:47:00 +04:00
|
|
|
// Enable the install target.
|
|
|
|
this->Makefile->GetLocalGenerator()
|
|
|
|
->GetGlobalGenerator()->EnableInstallTarget();
|
|
|
|
|
2006-03-15 19:02:08 +03:00
|
|
|
cmTargets &tgts = this->Makefile->GetTargets();
|
2001-09-20 23:08:30 +04:00
|
|
|
std::vector<std::string>::const_iterator s = args.begin();
|
2001-05-23 19:31:43 +04:00
|
|
|
++s;
|
2004-01-27 20:37:30 +03:00
|
|
|
std::string runtime_dir = "/bin";
|
2001-05-23 19:31:43 +04:00
|
|
|
for (;s != args.end(); ++s)
|
|
|
|
{
|
2004-01-27 20:37:30 +03:00
|
|
|
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");
|
2004-01-27 20:37:30 +03:00
|
|
|
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());
|
2004-01-27 20:37:30 +03:00
|
|
|
tgts[*s].SetRuntimeInstallPath(runtime_dir.c_str());
|
2006-02-20 01:27:47 +03:00
|
|
|
tgts[*s].SetHaveInstallRule(true);
|
2001-05-23 19:31:43 +04:00
|
|
|
}
|
2005-12-15 20:01:28 +03: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
|
|
|
}
|
2005-12-15 20:01:28 +03:00
|
|
|
|
2001-05-23 19:31:43 +04:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|