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