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.
|
2005-06-08 20:39:29 +00:00
|
|
|
int shared =
|
2006-03-15 16:02:08 +00:00
|
|
|
!cmSystemTools::IsOff(this->Makefile->GetDefinition("BUILD_SHARED_LIBS"));
|
2006-10-02 15:14:00 +00:00
|
|
|
bool in_all = true;
|
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
|
|
|
|
2006-03-15 16:02:08 +00:00
|
|
|
this->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
|
2007-01-04 21:03:41 +00:00
|
|
|
// source list name. There man be two keyword arguments, check for them
|
|
|
|
while ( s != args.end() )
|
2001-07-02 19:38:02 +00:00
|
|
|
{
|
|
|
|
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
|
|
|
}
|
2006-10-02 16:01:20 +00:00
|
|
|
else if(*s == "EXCLUDE_FROM_ALL")
|
2006-10-02 15:14:00 +00:00
|
|
|
{
|
|
|
|
++s;
|
|
|
|
in_all = false;
|
|
|
|
}
|
2007-01-04 21:03:41 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
break;
|
|
|
|
}
|
2001-07-02 19:38:02 +00:00
|
|
|
}
|
2001-11-08 15:48:47 +00:00
|
|
|
|
2005-06-08 20:39:29 +00:00
|
|
|
if (s == args.end())
|
|
|
|
{
|
2005-06-10 14:08:41 +00: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 20:39:29 +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
|
|
|
|
2006-10-02 15:14:00 +00:00
|
|
|
this->Makefile->AddLibrary(this->LibName.c_str(), shared, srclists,
|
|
|
|
in_all);
|
2001-04-11 18:59:02 +00:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2002-05-01 20:33:27 +00:00
|
|
|
|