2001-04-30 18:44:00 +04:00
|
|
|
/*=========================================================================
|
|
|
|
|
|
|
|
Program: Insight Segmentation & Registration Toolkit
|
|
|
|
Module: $RCSfile$
|
|
|
|
Language: C++
|
|
|
|
Date: $Date$
|
|
|
|
Version: $Revision$
|
|
|
|
|
2002-01-21 23:30:43 +03:00
|
|
|
Copyright (c) 2002 Insight Consortium. All rights reserved.
|
|
|
|
See ITKCopyright.txt or http://www.itk.org/HTML/Copyright.htm for details.
|
2001-04-30 18:44:00 +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-04-30 18:44:00 +04:00
|
|
|
|
|
|
|
=========================================================================*/
|
|
|
|
#include "cmTargetLinkLibrariesCommand.h"
|
|
|
|
|
|
|
|
// cmTargetLinkLibrariesCommand
|
2002-03-06 18:10:46 +03:00
|
|
|
bool cmTargetLinkLibrariesCommand::InitialPass(std::vector<std::string> const& argsIn)
|
2001-04-30 18:44:00 +04:00
|
|
|
{
|
2002-03-06 18:10:46 +03:00
|
|
|
if(argsIn.size() < 2)
|
2001-04-30 18:44:00 +04:00
|
|
|
{
|
|
|
|
this->SetError("called with incorrect number of arguments");
|
|
|
|
return false;
|
|
|
|
}
|
2002-03-06 18:10:46 +03:00
|
|
|
std::vector<std::string> args;
|
|
|
|
cmSystemTools::ExpandListArguments(argsIn, args);
|
2001-04-30 18:44:00 +04:00
|
|
|
// add libraries, nothe that there is an optional prefix
|
|
|
|
// of debug and optimized than can be used
|
2001-09-20 23:08:30 +04:00
|
|
|
std::vector<std::string>::const_iterator i = args.begin();
|
2001-05-08 19:40:47 +04:00
|
|
|
|
|
|
|
for(++i; i != args.end(); ++i)
|
2001-04-30 18:44:00 +04:00
|
|
|
{
|
|
|
|
if (*i == "debug")
|
|
|
|
{
|
|
|
|
++i;
|
|
|
|
m_Makefile->AddLinkLibraryForTarget(args[0].c_str(),i->c_str(),
|
|
|
|
cmTarget::DEBUG);
|
|
|
|
}
|
|
|
|
else if (*i == "optimized")
|
|
|
|
{
|
|
|
|
++i;
|
|
|
|
m_Makefile->AddLinkLibraryForTarget(args[0].c_str(),i->c_str(),
|
|
|
|
cmTarget::OPTIMIZED);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
m_Makefile->AddLinkLibraryForTarget(args[0].c_str(),i->c_str(),
|
|
|
|
cmTarget::GENERAL);
|
|
|
|
}
|
2002-04-19 23:28:43 +04:00
|
|
|
// if this is a library that cmake knows about, and LIBRARY_OUTPUT_PATH
|
|
|
|
// is not set, then add the link directory
|
|
|
|
const char* ldir = m_Makefile->GetDefinition("LIBRARY_OUTPUT_PATH");
|
|
|
|
if (cmSystemTools::IsOff(ldir))
|
|
|
|
{
|
|
|
|
const char* dir = m_Makefile->GetDefinition(i->c_str());
|
|
|
|
if( dir )
|
|
|
|
{
|
|
|
|
m_Makefile->AddLinkDirectory( dir );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2001-04-30 18:44:00 +04:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|