2001-04-11 14:59:02 -04:00
|
|
|
/*=========================================================================
|
|
|
|
|
2002-10-23 18:03:27 -04:00
|
|
|
Program: CMake - Cross-Platform Makefile Generator
|
2001-04-11 14:59:02 -04:00
|
|
|
Module: $RCSfile$
|
|
|
|
Language: C++
|
|
|
|
Date: $Date$
|
|
|
|
Version: $Revision$
|
|
|
|
|
2002-10-23 18: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-04-11 14:59:02 -04:00
|
|
|
|
2002-01-21 15:30:43 -05: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 14:59:02 -04:00
|
|
|
|
|
|
|
=========================================================================*/
|
|
|
|
#include "cmAddLibraryCommand.h"
|
|
|
|
|
|
|
|
// cmLibraryCommand
|
2002-12-11 18:13:33 -05:00
|
|
|
bool cmAddLibraryCommand::InitialPass(std::vector<std::string> const& args)
|
2001-04-11 14:59:02 -04:00
|
|
|
{
|
2002-12-11 18:13:33 -05:00
|
|
|
if(args.size() < 1 )
|
2001-04-11 14:59:02 -04:00
|
|
|
{
|
|
|
|
this->SetError("called with incorrect number of arguments");
|
|
|
|
return false;
|
|
|
|
}
|
2001-07-02 15:38:02 -04:00
|
|
|
// Library type defaults to value of BUILD_SHARED_LIBS, if it exists,
|
|
|
|
// otherwise it defaults to static library.
|
2005-06-08 16:39:29 -04:00
|
|
|
int shared =
|
2006-03-15 11:02:08 -05:00
|
|
|
!cmSystemTools::IsOff(this->Makefile->GetDefinition("BUILD_SHARED_LIBS"));
|
2001-07-02 15:38:02 -04:00
|
|
|
|
2001-09-20 15:08:30 -04:00
|
|
|
std::vector<std::string>::const_iterator s = args.begin();
|
2001-11-01 13:09:08 -05:00
|
|
|
|
2006-03-15 11:02:08 -05:00
|
|
|
this->LibName = *s;
|
2001-11-01 13:09:08 -05:00
|
|
|
|
2001-07-02 15:38:02 -04: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 18:02:59 -04:00
|
|
|
shared = 0;
|
2001-07-02 15:38:02 -04:00
|
|
|
}
|
|
|
|
else if(libType == "SHARED")
|
|
|
|
{
|
|
|
|
++s;
|
2001-08-28 18:02:59 -04:00
|
|
|
shared = 1;
|
|
|
|
}
|
|
|
|
else if(libType == "MODULE")
|
|
|
|
{
|
|
|
|
++s;
|
|
|
|
shared = 2;
|
2001-07-02 15:38:02 -04:00
|
|
|
}
|
|
|
|
}
|
2001-11-08 10:48:47 -05:00
|
|
|
|
2005-06-08 16:39:29 -04:00
|
|
|
if (s == args.end())
|
|
|
|
{
|
2005-06-10 10:08:41 -04:00
|
|
|
std::string msg = "You have called ADD_LIBRARY for library ";
|
|
|
|
msg += args[0];
|
|
|
|
msg += " without any source files. This typically indicates a problem ";
|
|
|
|
msg += "with your CMakeLists.txt file";
|
|
|
|
cmSystemTools::Message(msg.c_str() ,"Warning");
|
2005-06-08 16:39:29 -04:00
|
|
|
}
|
|
|
|
|
2001-11-08 10:48:47 -05:00
|
|
|
std::vector<std::string> srclists;
|
|
|
|
while (s != args.end())
|
|
|
|
{
|
2002-03-05 18:41:24 -05:00
|
|
|
srclists.push_back(*s);
|
2001-11-08 11:40:06 -05:00
|
|
|
++s;
|
2001-11-08 10:48:47 -05:00
|
|
|
}
|
2001-11-01 13:09:08 -05:00
|
|
|
|
2006-03-15 11:02:08 -05:00
|
|
|
this->Makefile->AddLibrary(this->LibName.c_str(), shared, srclists);
|
2001-04-11 14:59:02 -04:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2002-05-01 16:33:27 -04:00
|
|
|
|