CMake/Source/cmLinkLibrariesCommand.cxx

69 lines
1.9 KiB
C++
Raw Normal View History

2001-01-11 22:55:47 +03: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-01-11 22:55:47 +03: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-01-11 22:55:47 +03:00
=========================================================================*/
2001-01-18 19:20:24 +03:00
#include "cmLinkLibrariesCommand.h"
2001-01-18 19:20:24 +03:00
// cmLinkLibrariesCommand
bool cmLinkLibrariesCommand::InitialPass(std::vector<std::string> const& argsIn)
{
if(argsIn.size() < 1 )
{
2002-07-22 18:01:53 +04:00
return true;
}
std::vector<std::string> args;
cmSystemTools::ExpandListArguments(argsIn, args);
2001-04-27 00:22:53 +04:00
// add libraries, nothe that there is an optional prefix
// of debug and optimized than can be used
for(std::vector<std::string>::const_iterator i = args.begin();
i != args.end(); ++i)
{
2001-04-27 00:22:53 +04:00
if (*i == "debug")
{
++i;
m_Makefile->AddLinkLibrary(i->c_str(),
cmTarget::DEBUG);
2001-04-27 00:22:53 +04:00
}
else if (*i == "optimized")
{
++i;
m_Makefile->AddLinkLibrary(i->c_str(),
cmTarget::OPTIMIZED);
2001-04-27 00:22:53 +04:00
}
else
{
m_Makefile->AddLinkLibrary(i->c_str());
}
const char* ldir = m_Makefile->GetDefinition("LIBRARY_OUTPUT_PATH");
if (cmSystemTools::IsOff(ldir))
{
std::string libPath = *i + "_CMAKE_PATH";
const char* dir = m_Makefile->GetDefinition(libPath.c_str());
if( dir )
{
m_Makefile->AddLinkDirectory( dir );
}
}
else
{
m_Makefile->AddLinkDirectory( ldir );
}
}
return true;
}