2001-04-11 18:59:02 +00:00
|
|
|
/*=========================================================================
|
|
|
|
|
2002-10-23 22:03:27 +00:00
|
|
|
Program: CMake - Cross-Platform Makefile Generator
|
2001-04-11 18:59:02 +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-04-11 18:59:02 +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-04-11 18:59:02 +00:00
|
|
|
|
|
|
|
=========================================================================*/
|
|
|
|
#include "cmAddLibraryCommand.h"
|
|
|
|
|
|
|
|
// cmLibraryCommand
|
2002-12-11 23:13:33 +00:00
|
|
|
bool cmAddLibraryCommand::InitialPass(std::vector<std::string> const& args)
|
2001-04-11 18:59:02 +00:00
|
|
|
{
|
2002-12-11 23:13:33 +00:00
|
|
|
if(args.size() < 1 )
|
2001-04-11 18:59:02 +00:00
|
|
|
{
|
|
|
|
this->SetError("called with incorrect number of arguments");
|
|
|
|
return false;
|
|
|
|
}
|
2001-07-02 19:38:02 +00:00
|
|
|
// Library type defaults to value of BUILD_SHARED_LIBS, if it exists,
|
|
|
|
// otherwise it defaults to static library.
|
2001-08-28 22:02:59 +00:00
|
|
|
int shared = !cmSystemTools::IsOff(m_Makefile->GetDefinition("BUILD_SHARED_LIBS"));
|
2001-07-02 19:38:02 +00:00
|
|
|
|
2001-09-20 19:08:30 +00:00
|
|
|
std::vector<std::string>::const_iterator s = args.begin();
|
2001-11-01 18:09:08 +00:00
|
|
|
|
2002-05-01 20:33:27 +00:00
|
|
|
m_LibName = *s;
|
2001-11-01 18:09:08 +00:00
|
|
|
|
2001-07-02 19:38:02 +00: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;
|
2001-08-28 22:02:59 +00:00
|
|
|
shared = 0;
|
2001-07-02 19:38:02 +00:00
|
|
|
}
|
|
|
|
else if(libType == "SHARED")
|
|
|
|
{
|
|
|
|
++s;
|
2001-08-28 22:02:59 +00:00
|
|
|
shared = 1;
|
|
|
|
}
|
|
|
|
else if(libType == "MODULE")
|
|
|
|
{
|
|
|
|
++s;
|
|
|
|
shared = 2;
|
2001-07-02 19:38:02 +00:00
|
|
|
}
|
|
|
|
}
|
2001-11-08 15:48:47 +00:00
|
|
|
|
|
|
|
std::vector<std::string> srclists;
|
|
|
|
while (s != args.end())
|
|
|
|
{
|
2002-03-05 23:41:24 +00:00
|
|
|
srclists.push_back(*s);
|
2001-11-08 16:40:06 +00:00
|
|
|
++s;
|
2001-11-08 15:48:47 +00:00
|
|
|
}
|
2001-11-01 18:09:08 +00:00
|
|
|
|
2002-05-01 20:33:27 +00:00
|
|
|
m_Makefile->AddLibrary(m_LibName.c_str(), shared, srclists);
|
2001-04-11 18:59:02 +00:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2002-05-01 20:33:27 +00:00
|
|
|
|