2009-09-28 19:43:28 +04:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
|
2001-04-11 22:59:02 +04:00
|
|
|
|
2009-09-28 19:43:28 +04:00
|
|
|
Distributed under the OSI-approved BSD License (the "License");
|
|
|
|
see accompanying file Copyright.txt for details.
|
2001-04-11 22:59:02 +04:00
|
|
|
|
2009-09-28 19:43:28 +04:00
|
|
|
This software is distributed WITHOUT ANY WARRANTY; without even the
|
|
|
|
implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
See the License for more information.
|
|
|
|
============================================================================*/
|
2001-04-11 22:59:02 +04:00
|
|
|
#include "cmAddLibraryCommand.h"
|
|
|
|
|
2007-06-26 21:05:27 +04:00
|
|
|
#include "cmake.h"
|
|
|
|
|
2001-04-11 22:59:02 +04:00
|
|
|
// cmLibraryCommand
|
2008-01-23 18:28:26 +03:00
|
|
|
bool cmAddLibraryCommand
|
|
|
|
::InitialPass(std::vector<std::string> const& args, cmExecutionStatus &)
|
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.
|
2007-06-22 17:58:10 +04:00
|
|
|
cmTarget::TargetType type = cmTarget::SHARED_LIBRARY;
|
|
|
|
if (cmSystemTools::IsOff(this->Makefile->GetDefinition("BUILD_SHARED_LIBS")))
|
|
|
|
{
|
|
|
|
type = cmTarget::STATIC_LIBRARY;
|
|
|
|
}
|
2007-03-12 17:26:59 +03:00
|
|
|
bool excludeFromAll = false;
|
2007-06-22 17:58:10 +04:00
|
|
|
bool importTarget = false;
|
2012-01-25 22:39:26 +04:00
|
|
|
bool importGlobal = false;
|
2011-08-10 21:51:07 +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
|
|
|
|
2007-06-22 17:58:10 +04:00
|
|
|
std::string libName = *s;
|
2001-11-01 21:09:08 +03:00
|
|
|
|
2001-07-02 23:38:02 +04:00
|
|
|
++s;
|
2011-08-10 21:51:07 +04:00
|
|
|
|
2001-07-02 23:38:02 +04:00
|
|
|
// If the second argument is "SHARED" or "STATIC", then it controls
|
|
|
|
// the type of library. Otherwise, it is treated as a source or
|
2007-06-22 17:58:10 +04:00
|
|
|
// source list name. There may be two keyword arguments, check for them
|
2008-01-28 16:38:36 +03:00
|
|
|
bool haveSpecifiedType = false;
|
2007-01-05 00:03:41 +03:00
|
|
|
while ( s != args.end() )
|
2001-07-02 23:38:02 +04:00
|
|
|
{
|
|
|
|
std::string libType = *s;
|
|
|
|
if(libType == "STATIC")
|
|
|
|
{
|
|
|
|
++s;
|
2007-06-22 17:58:10 +04:00
|
|
|
type = cmTarget::STATIC_LIBRARY;
|
2008-01-28 16:38:36 +03:00
|
|
|
haveSpecifiedType = true;
|
2001-07-02 23:38:02 +04:00
|
|
|
}
|
|
|
|
else if(libType == "SHARED")
|
|
|
|
{
|
|
|
|
++s;
|
2007-06-22 17:58:10 +04:00
|
|
|
type = cmTarget::SHARED_LIBRARY;
|
2008-01-28 16:38:36 +03:00
|
|
|
haveSpecifiedType = true;
|
2001-08-29 02:02:59 +04:00
|
|
|
}
|
|
|
|
else if(libType == "MODULE")
|
|
|
|
{
|
|
|
|
++s;
|
2007-06-22 17:58:10 +04:00
|
|
|
type = cmTarget::MODULE_LIBRARY;
|
2008-01-28 16:38:36 +03:00
|
|
|
haveSpecifiedType = true;
|
2001-07-02 23:38:02 +04:00
|
|
|
}
|
2012-03-12 18:47:40 +04:00
|
|
|
else if(libType == "OBJECT")
|
|
|
|
{
|
|
|
|
++s;
|
|
|
|
type = cmTarget::OBJECT_LIBRARY;
|
|
|
|
haveSpecifiedType = true;
|
|
|
|
}
|
2008-08-18 19:39:22 +04:00
|
|
|
else if(libType == "UNKNOWN")
|
|
|
|
{
|
|
|
|
++s;
|
|
|
|
type = cmTarget::UNKNOWN_LIBRARY;
|
|
|
|
haveSpecifiedType = true;
|
|
|
|
}
|
2006-10-02 20:01:20 +04:00
|
|
|
else if(*s == "EXCLUDE_FROM_ALL")
|
2006-10-02 19:14:00 +04:00
|
|
|
{
|
|
|
|
++s;
|
2007-03-12 17:26:59 +03:00
|
|
|
excludeFromAll = true;
|
2006-10-02 19:14:00 +04:00
|
|
|
}
|
2008-01-28 16:38:36 +03:00
|
|
|
else if(*s == "IMPORTED")
|
2007-06-22 17:58:10 +04:00
|
|
|
{
|
|
|
|
++s;
|
|
|
|
importTarget = true;
|
|
|
|
}
|
2012-01-25 22:39:26 +04:00
|
|
|
else if(importTarget && *s == "GLOBAL")
|
|
|
|
{
|
|
|
|
++s;
|
|
|
|
importGlobal = true;
|
|
|
|
}
|
2007-01-05 00:03:41 +03:00
|
|
|
else
|
|
|
|
{
|
|
|
|
break;
|
|
|
|
}
|
2001-07-02 23:38:02 +04:00
|
|
|
}
|
2001-11-08 18:48:47 +03:00
|
|
|
|
2011-08-16 03:26:02 +04:00
|
|
|
/* ideally we should check whether for the linker language of the target
|
2007-06-22 00:23:54 +04:00
|
|
|
CMAKE_${LANG}_CREATE_SHARED_LIBRARY is defined and if not default to
|
2011-08-16 03:26:02 +04:00
|
|
|
STATIC. But at this point we know only the name of the target, but not
|
2007-06-22 00:23:54 +04:00
|
|
|
yet its linker language. */
|
2011-08-16 03:26:02 +04:00
|
|
|
if ((type != cmTarget::STATIC_LIBRARY) &&
|
2012-06-11 16:37:11 +04:00
|
|
|
(type != cmTarget::OBJECT_LIBRARY) &&
|
2007-06-26 21:05:27 +04:00
|
|
|
(this->Makefile->GetCMakeInstance()->GetPropertyAsBool(
|
|
|
|
"TARGET_SUPPORTS_SHARED_LIBS") == false))
|
2007-06-22 00:23:54 +04:00
|
|
|
{
|
2012-06-11 16:37:11 +04:00
|
|
|
cmOStringStream w;
|
|
|
|
w <<
|
|
|
|
"ADD_LIBRARY called with " <<
|
|
|
|
(type==cmTarget::SHARED_LIBRARY ? "SHARED" : "MODULE") <<
|
|
|
|
" option but the target platform does not support dynamic linking. "
|
|
|
|
"Building a STATIC library instead. This may lead to problems.";
|
|
|
|
this->Makefile->IssueMessage(cmake::AUTHOR_WARNING, w.str());
|
2007-06-22 17:58:10 +04:00
|
|
|
type = cmTarget::STATIC_LIBRARY;
|
|
|
|
}
|
|
|
|
|
2008-02-11 21:35:39 +03:00
|
|
|
// Handle imported target creation.
|
2008-01-28 16:38:36 +03:00
|
|
|
if(importTarget)
|
|
|
|
{
|
2011-08-10 21:51:07 +04:00
|
|
|
// The IMPORTED signature requires a type to be specified explicitly.
|
|
|
|
if (!haveSpecifiedType)
|
|
|
|
{
|
|
|
|
this->SetError("called with IMPORTED argument but no library type.");
|
|
|
|
return false;
|
|
|
|
}
|
2012-03-12 18:47:40 +04:00
|
|
|
if(type == cmTarget::OBJECT_LIBRARY)
|
|
|
|
{
|
|
|
|
this->Makefile->IssueMessage(
|
|
|
|
cmake::FATAL_ERROR,
|
|
|
|
"The OBJECT library type may not be used for IMPORTED libraries."
|
|
|
|
);
|
|
|
|
return true;
|
|
|
|
}
|
2011-08-10 21:51:07 +04:00
|
|
|
|
2008-01-28 16:38:36 +03:00
|
|
|
// Make sure the target does not already exist.
|
2008-02-11 21:35:39 +03:00
|
|
|
if(this->Makefile->FindTargetToUse(libName.c_str()))
|
2008-01-28 16:38:36 +03:00
|
|
|
{
|
|
|
|
cmOStringStream e;
|
|
|
|
e << "cannot create imported target \"" << libName
|
|
|
|
<< "\" because another target with the same name already exists.";
|
|
|
|
this->SetError(e.str().c_str());
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Create the imported target.
|
2012-01-25 22:39:26 +04:00
|
|
|
this->Makefile->AddImportedTarget(libName.c_str(), type, importGlobal);
|
2007-06-22 17:58:10 +04:00
|
|
|
return true;
|
|
|
|
}
|
2008-02-11 21:35:39 +03:00
|
|
|
|
2008-08-18 19:39:22 +04:00
|
|
|
// A non-imported target may not have UNKNOWN type.
|
|
|
|
if(type == cmTarget::UNKNOWN_LIBRARY)
|
|
|
|
{
|
|
|
|
this->Makefile->IssueMessage(
|
|
|
|
cmake::FATAL_ERROR,
|
|
|
|
"The UNKNOWN library type may be used only for IMPORTED libraries."
|
|
|
|
);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2008-02-11 21:35:39 +03:00
|
|
|
// Enforce name uniqueness.
|
2008-02-12 01:33:46 +03:00
|
|
|
{
|
2008-02-11 21:35:39 +03:00
|
|
|
std::string msg;
|
|
|
|
if(!this->Makefile->EnforceUniqueName(libName, msg))
|
2008-01-28 16:38:36 +03:00
|
|
|
{
|
2008-02-11 21:35:39 +03:00
|
|
|
this->SetError(msg.c_str());
|
|
|
|
return false;
|
2008-01-28 16:38:36 +03:00
|
|
|
}
|
2008-02-12 01:33:46 +03:00
|
|
|
}
|
2007-06-22 17:58:10 +04: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");
|
2007-06-22 00:23:54 +04:00
|
|
|
}
|
|
|
|
|
2001-11-08 18:48:47 +03:00
|
|
|
std::vector<std::string> srclists;
|
2011-08-16 03:26:02 +04:00
|
|
|
while (s != args.end())
|
2001-11-08 18:48:47 +03:00
|
|
|
{
|
2011-08-16 03:26:02 +04: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
|
|
|
|
2011-08-16 03:45:05 +04:00
|
|
|
this->Makefile->AddLibrary(libName.c_str(), type, srclists, excludeFromAll);
|
2011-08-16 03:26:02 +04:00
|
|
|
|
2001-04-11 22:59:02 +04:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2002-05-02 00:33:27 +04:00
|
|
|
|