CMake/Source/cmAddLibraryCommand.cxx

94 lines
2.4 KiB
C++
Raw Normal View History

/*=========================================================================
Program: CMake - Cross-Platform Makefile Generator
Module: $RCSfile$
Language: C++
Date: $Date$
Version: $Revision$
Copyright (c) 2002 Kitware, Inc., Insight Consortium. All rights reserved.
See Copyright.txt or http://www.cmake.org/HTML/Copyright.html 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& args)
{
if(args.size() < 1 )
{
this->SetError("called with incorrect number of arguments");
return false;
}
// Library type defaults to value of BUILD_SHARED_LIBS, if it exists,
// otherwise it defaults to static library.
int shared =
2006-03-15 19:02:08 +03:00
!cmSystemTools::IsOff(this->Makefile->GetDefinition("BUILD_SHARED_LIBS"));
2007-03-12 17:26:59 +03:00
bool excludeFromAll = false;
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
++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-05 00:03:41 +03:00
// source list name. There man be two keyword arguments, check for them
while ( 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;
}
else if(*s == "EXCLUDE_FROM_ALL")
{
++s;
2007-03-12 17:26:59 +03:00
excludeFromAll = true;
}
2007-01-05 00:03:41 +03:00
else
{
break;
}
}
2001-11-08 18:48:47 +03:00
if (s == args.end())
{
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");
}
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
this->Makefile->AddLibrary(this->LibName.c_str(), shared, srclists,
2007-03-12 17:26:59 +03:00
excludeFromAll);
return true;
}