CMake/Source/cmAddLibraryCommand.cxx

75 lines
1.9 KiB
C++
Raw Normal View History

/*=========================================================================
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.
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.
=========================================================================*/
#include "cmAddLibraryCommand.h"
// cmLibraryCommand
bool cmAddLibraryCommand::InitialPass(std::vector<std::string> const& argsIn)
{
if(argsIn.size() < 1 )
{
this->SetError("called with incorrect number of arguments");
return false;
}
std::vector<std::string> args;
cmSystemTools::ExpandListArguments(argsIn, args);
// Library type defaults to value of BUILD_SHARED_LIBS, if it exists,
// otherwise it defaults to static library.
int shared = !cmSystemTools::IsOff(m_Makefile->GetDefinition("BUILD_SHARED_LIBS"));
std::vector<std::string>::const_iterator s = args.begin();
2001-11-01 21:09:08 +03:00
m_LibName = *s;
2001-11-01 21:09:08 +03:00
++s;
// If the second argument is "SHARED" or "STATIC", then it controls
// the type of library. Otherwise, it is treated as a source or
// source list name.
if(s != args.end())
{
std::string libType = *s;
if(libType == "STATIC")
{
++s;
shared = 0;
}
else if(libType == "SHARED")
{
++s;
shared = 1;
}
else if(libType == "MODULE")
{
++s;
shared = 2;
}
}
2001-11-08 18:48:47 +03:00
std::vector<std::string> srclists;
while (s != args.end())
{
srclists.push_back(*s);
++s;
2001-11-08 18:48:47 +03:00
}
2001-11-01 21:09:08 +03:00
m_Makefile->AddLibrary(m_LibName.c_str(), shared, srclists);
return true;
}