2009-09-28 11:43:28 -04:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
|
2001-04-11 14:59:02 -04:00
|
|
|
|
2009-09-28 11:43:28 -04:00
|
|
|
Distributed under the OSI-approved BSD License (the "License");
|
|
|
|
see accompanying file Copyright.txt for details.
|
2001-04-11 14:59:02 -04:00
|
|
|
|
2009-09-28 11: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 14:59:02 -04:00
|
|
|
#include "cmAddLibraryCommand.h"
|
|
|
|
|
2007-06-26 13:05:27 -04:00
|
|
|
#include "cmake.h"
|
|
|
|
|
2001-04-11 14:59:02 -04:00
|
|
|
// cmLibraryCommand
|
2008-01-23 10:28:26 -05:00
|
|
|
bool cmAddLibraryCommand
|
|
|
|
::InitialPass(std::vector<std::string> const& args, cmExecutionStatus &)
|
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.
|
2007-06-22 09: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 10:26:59 -04:00
|
|
|
bool excludeFromAll = false;
|
2007-06-22 09:58:10 -04:00
|
|
|
bool importTarget = false;
|
2012-01-25 13:39:26 -05:00
|
|
|
bool importGlobal = false;
|
2011-08-10 19:51:07 +02: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
|
|
|
|
2007-06-22 09:58:10 -04:00
|
|
|
std::string libName = *s;
|
2001-11-01 13:09:08 -05:00
|
|
|
|
2001-07-02 15:38:02 -04:00
|
|
|
++s;
|
2011-08-10 19:51:07 +02:00
|
|
|
|
2001-07-02 15: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 09:58:10 -04:00
|
|
|
// source list name. There may be two keyword arguments, check for them
|
2008-01-28 08:38:36 -05:00
|
|
|
bool haveSpecifiedType = false;
|
2013-07-12 09:14:31 +02:00
|
|
|
bool isAlias = false;
|
2007-01-04 16:03:41 -05:00
|
|
|
while ( s != args.end() )
|
2001-07-02 15:38:02 -04:00
|
|
|
{
|
|
|
|
std::string libType = *s;
|
|
|
|
if(libType == "STATIC")
|
|
|
|
{
|
2013-12-31 14:52:07 +01:00
|
|
|
if (type == cmTarget::INTERFACE_LIBRARY)
|
|
|
|
{
|
|
|
|
cmOStringStream e;
|
|
|
|
e << "INTERFACE library specified with conflicting STATIC type.";
|
2014-03-11 00:04:11 +01:00
|
|
|
this->SetError(e.str());
|
2013-12-31 14:52:07 +01:00
|
|
|
return false;
|
|
|
|
}
|
2001-07-02 15:38:02 -04:00
|
|
|
++s;
|
2007-06-22 09:58:10 -04:00
|
|
|
type = cmTarget::STATIC_LIBRARY;
|
2008-01-28 08:38:36 -05:00
|
|
|
haveSpecifiedType = true;
|
2001-07-02 15:38:02 -04:00
|
|
|
}
|
|
|
|
else if(libType == "SHARED")
|
|
|
|
{
|
2013-12-31 14:52:07 +01:00
|
|
|
if (type == cmTarget::INTERFACE_LIBRARY)
|
|
|
|
{
|
|
|
|
cmOStringStream e;
|
|
|
|
e << "INTERFACE library specified with conflicting SHARED type.";
|
2014-03-11 00:04:11 +01:00
|
|
|
this->SetError(e.str());
|
2013-12-31 14:52:07 +01:00
|
|
|
return false;
|
|
|
|
}
|
2001-07-02 15:38:02 -04:00
|
|
|
++s;
|
2007-06-22 09:58:10 -04:00
|
|
|
type = cmTarget::SHARED_LIBRARY;
|
2008-01-28 08:38:36 -05:00
|
|
|
haveSpecifiedType = true;
|
2001-08-28 18:02:59 -04:00
|
|
|
}
|
|
|
|
else if(libType == "MODULE")
|
|
|
|
{
|
2013-12-31 14:52:07 +01:00
|
|
|
if (type == cmTarget::INTERFACE_LIBRARY)
|
|
|
|
{
|
|
|
|
cmOStringStream e;
|
|
|
|
e << "INTERFACE library specified with conflicting MODULE type.";
|
2014-03-11 00:04:11 +01:00
|
|
|
this->SetError(e.str());
|
2013-12-31 14:52:07 +01:00
|
|
|
return false;
|
|
|
|
}
|
2001-08-28 18:02:59 -04:00
|
|
|
++s;
|
2007-06-22 09:58:10 -04:00
|
|
|
type = cmTarget::MODULE_LIBRARY;
|
2008-01-28 08:38:36 -05:00
|
|
|
haveSpecifiedType = true;
|
2001-07-02 15:38:02 -04:00
|
|
|
}
|
2012-03-12 10:47:40 -04:00
|
|
|
else if(libType == "OBJECT")
|
|
|
|
{
|
2013-12-31 14:52:07 +01:00
|
|
|
if (type == cmTarget::INTERFACE_LIBRARY)
|
|
|
|
{
|
|
|
|
cmOStringStream e;
|
|
|
|
e << "INTERFACE library specified with conflicting OBJECT type.";
|
2014-03-11 00:04:11 +01:00
|
|
|
this->SetError(e.str());
|
2013-12-31 14:52:07 +01:00
|
|
|
return false;
|
|
|
|
}
|
2012-03-12 10:47:40 -04:00
|
|
|
++s;
|
|
|
|
type = cmTarget::OBJECT_LIBRARY;
|
|
|
|
haveSpecifiedType = true;
|
|
|
|
}
|
2008-08-18 11:39:22 -04:00
|
|
|
else if(libType == "UNKNOWN")
|
|
|
|
{
|
2013-12-31 14:52:07 +01:00
|
|
|
if (type == cmTarget::INTERFACE_LIBRARY)
|
|
|
|
{
|
|
|
|
cmOStringStream e;
|
|
|
|
e << "INTERFACE library specified with conflicting UNKNOWN type.";
|
2014-03-11 00:04:11 +01:00
|
|
|
this->SetError(e.str());
|
2013-12-31 14:52:07 +01:00
|
|
|
return false;
|
|
|
|
}
|
2008-08-18 11:39:22 -04:00
|
|
|
++s;
|
|
|
|
type = cmTarget::UNKNOWN_LIBRARY;
|
|
|
|
haveSpecifiedType = true;
|
|
|
|
}
|
2013-07-12 09:14:31 +02:00
|
|
|
else if(libType == "ALIAS")
|
|
|
|
{
|
2013-12-31 14:52:07 +01:00
|
|
|
if (type == cmTarget::INTERFACE_LIBRARY)
|
|
|
|
{
|
|
|
|
cmOStringStream e;
|
|
|
|
e << "INTERFACE library specified with conflicting ALIAS type.";
|
2014-03-11 00:04:11 +01:00
|
|
|
this->SetError(e.str());
|
2013-12-31 14:52:07 +01:00
|
|
|
return false;
|
|
|
|
}
|
2013-07-12 09:14:31 +02:00
|
|
|
++s;
|
|
|
|
isAlias = true;
|
|
|
|
}
|
2012-11-02 15:47:40 +01:00
|
|
|
else if(libType == "INTERFACE")
|
|
|
|
{
|
2013-12-31 14:52:07 +01:00
|
|
|
if (haveSpecifiedType)
|
|
|
|
{
|
|
|
|
cmOStringStream e;
|
|
|
|
e << "INTERFACE library specified with conflicting/multiple types.";
|
2014-03-11 00:04:11 +01:00
|
|
|
this->SetError(e.str());
|
2013-12-31 14:52:07 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (isAlias)
|
|
|
|
{
|
|
|
|
cmOStringStream e;
|
|
|
|
e << "INTERFACE library specified with conflicting ALIAS type.";
|
2014-03-11 00:04:11 +01:00
|
|
|
this->SetError(e.str());
|
2013-12-31 14:52:07 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (excludeFromAll)
|
|
|
|
{
|
|
|
|
cmOStringStream e;
|
|
|
|
e << "INTERFACE library may not be used with EXCLUDE_FROM_ALL.";
|
2014-03-11 00:04:11 +01:00
|
|
|
this->SetError(e.str());
|
2013-12-31 14:52:07 +01:00
|
|
|
return false;
|
|
|
|
}
|
2012-11-02 15:47:40 +01:00
|
|
|
++s;
|
|
|
|
type = cmTarget::INTERFACE_LIBRARY;
|
|
|
|
haveSpecifiedType = true;
|
|
|
|
}
|
2006-10-02 12:01:20 -04:00
|
|
|
else if(*s == "EXCLUDE_FROM_ALL")
|
2006-10-02 11:14:00 -04:00
|
|
|
{
|
2013-12-31 14:52:07 +01:00
|
|
|
if (type == cmTarget::INTERFACE_LIBRARY)
|
|
|
|
{
|
|
|
|
cmOStringStream e;
|
|
|
|
e << "INTERFACE library may not be used with EXCLUDE_FROM_ALL.";
|
2014-03-11 00:04:11 +01:00
|
|
|
this->SetError(e.str());
|
2013-12-31 14:52:07 +01:00
|
|
|
return false;
|
|
|
|
}
|
2006-10-02 11:14:00 -04:00
|
|
|
++s;
|
2007-03-12 10:26:59 -04:00
|
|
|
excludeFromAll = true;
|
2006-10-02 11:14:00 -04:00
|
|
|
}
|
2008-01-28 08:38:36 -05:00
|
|
|
else if(*s == "IMPORTED")
|
2007-06-22 09:58:10 -04:00
|
|
|
{
|
|
|
|
++s;
|
|
|
|
importTarget = true;
|
|
|
|
}
|
2012-01-25 13:39:26 -05:00
|
|
|
else if(importTarget && *s == "GLOBAL")
|
|
|
|
{
|
|
|
|
++s;
|
|
|
|
importGlobal = true;
|
|
|
|
}
|
2014-02-07 15:31:57 +01:00
|
|
|
else if(type == cmTarget::INTERFACE_LIBRARY && *s == "GLOBAL")
|
|
|
|
{
|
|
|
|
cmOStringStream e;
|
|
|
|
e << "GLOBAL option may only be used with IMPORTED libraries.";
|
2014-03-11 00:04:11 +01:00
|
|
|
this->SetError(e.str());
|
2014-02-07 15:31:57 +01:00
|
|
|
return false;
|
|
|
|
}
|
2007-01-04 16:03:41 -05:00
|
|
|
else
|
|
|
|
{
|
|
|
|
break;
|
|
|
|
}
|
2001-07-02 15:38:02 -04:00
|
|
|
}
|
2013-11-05 17:32:30 +01:00
|
|
|
|
2013-12-31 14:52:07 +01:00
|
|
|
if (type == cmTarget::INTERFACE_LIBRARY)
|
|
|
|
{
|
|
|
|
if (s != args.end())
|
|
|
|
{
|
|
|
|
cmOStringStream e;
|
|
|
|
e << "INTERFACE library requires no source arguments.";
|
2014-03-11 00:04:11 +01:00
|
|
|
this->SetError(e.str());
|
2013-12-31 14:52:07 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (importGlobal && !importTarget)
|
|
|
|
{
|
|
|
|
cmOStringStream e;
|
|
|
|
e << "INTERFACE library specified as GLOBAL, but not as IMPORTED.";
|
2014-03-11 00:04:11 +01:00
|
|
|
this->SetError(e.str());
|
2013-12-31 14:52:07 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-11-16 11:07:24 +01:00
|
|
|
bool nameOk = cmGeneratorExpression::IsValidTargetName(libName) &&
|
|
|
|
!cmGlobalGenerator::IsReservedTarget(libName);
|
|
|
|
|
2013-11-05 17:32:30 +01:00
|
|
|
if (nameOk && !importTarget && !isAlias)
|
|
|
|
{
|
|
|
|
nameOk = libName.find(":") == std::string::npos;
|
|
|
|
}
|
|
|
|
if (!nameOk)
|
|
|
|
{
|
|
|
|
cmake::MessageType messageType = cmake::AUTHOR_WARNING;
|
2014-03-28 21:38:10 +01:00
|
|
|
cmOStringStream e;
|
2013-11-05 17:32:30 +01:00
|
|
|
bool issueMessage = false;
|
|
|
|
switch(this->Makefile->GetPolicyStatus(cmPolicies::CMP0037))
|
|
|
|
{
|
|
|
|
case cmPolicies::WARN:
|
2014-03-28 21:38:10 +01:00
|
|
|
if(type != cmTarget::INTERFACE_LIBRARY)
|
|
|
|
{
|
|
|
|
e << (this->Makefile->GetPolicies()
|
|
|
|
->GetPolicyWarning(cmPolicies::CMP0037)) << "\n";
|
|
|
|
issueMessage = true;
|
|
|
|
}
|
2013-11-05 17:32:30 +01:00
|
|
|
case cmPolicies::OLD:
|
|
|
|
break;
|
|
|
|
case cmPolicies::NEW:
|
|
|
|
case cmPolicies::REQUIRED_IF_USED:
|
|
|
|
case cmPolicies::REQUIRED_ALWAYS:
|
|
|
|
issueMessage = true;
|
|
|
|
messageType = cmake::FATAL_ERROR;
|
|
|
|
}
|
|
|
|
if (issueMessage)
|
|
|
|
{
|
2013-11-16 11:07:24 +01:00
|
|
|
e << "The target name \"" << libName <<
|
|
|
|
"\" is reserved or not valid for certain "
|
2013-11-05 17:32:30 +01:00
|
|
|
"CMake features, such as generator expressions, and may result "
|
|
|
|
"in undefined behavior.";
|
2014-03-11 00:04:11 +01:00
|
|
|
this->Makefile->IssueMessage(messageType, e.str());
|
2013-11-05 17:32:30 +01:00
|
|
|
|
|
|
|
if (messageType == cmake::FATAL_ERROR)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-07-12 09:14:31 +02:00
|
|
|
if (isAlias)
|
|
|
|
{
|
2014-03-11 00:04:11 +01:00
|
|
|
if(!cmGeneratorExpression::IsValidTargetName(libName))
|
2013-07-12 09:14:31 +02:00
|
|
|
{
|
2014-03-11 00:04:11 +01:00
|
|
|
this->SetError("Invalid name for ALIAS: " + libName);
|
2013-07-12 09:14:31 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if(excludeFromAll)
|
|
|
|
{
|
|
|
|
this->SetError("EXCLUDE_FROM_ALL with ALIAS makes no sense.");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if(importTarget || importGlobal)
|
|
|
|
{
|
|
|
|
this->SetError("IMPORTED with ALIAS is not allowed.");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if(args.size() != 3)
|
|
|
|
{
|
|
|
|
cmOStringStream e;
|
|
|
|
e << "ALIAS requires exactly one target argument.";
|
2014-03-11 00:04:11 +01:00
|
|
|
this->SetError(e.str());
|
2013-07-12 09:14:31 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
const char *aliasedName = s->c_str();
|
|
|
|
if(this->Makefile->IsAlias(aliasedName))
|
|
|
|
{
|
|
|
|
cmOStringStream e;
|
|
|
|
e << "cannot create ALIAS target \"" << libName
|
|
|
|
<< "\" because target \"" << aliasedName << "\" is itself an ALIAS.";
|
2014-03-11 00:04:11 +01:00
|
|
|
this->SetError(e.str());
|
2013-07-12 09:14:31 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
cmTarget *aliasedTarget =
|
|
|
|
this->Makefile->FindTargetToUse(aliasedName, true);
|
|
|
|
if(!aliasedTarget)
|
|
|
|
{
|
|
|
|
cmOStringStream e;
|
|
|
|
e << "cannot create ALIAS target \"" << libName
|
|
|
|
<< "\" because target \"" << aliasedName << "\" does not already "
|
|
|
|
"exist.";
|
2014-03-11 00:04:11 +01:00
|
|
|
this->SetError(e.str());
|
2013-07-12 09:14:31 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
cmTarget::TargetType aliasedType = aliasedTarget->GetType();
|
|
|
|
if(aliasedType != cmTarget::SHARED_LIBRARY
|
|
|
|
&& aliasedType != cmTarget::STATIC_LIBRARY
|
|
|
|
&& aliasedType != cmTarget::MODULE_LIBRARY
|
2012-11-02 15:47:40 +01:00
|
|
|
&& aliasedType != cmTarget::OBJECT_LIBRARY
|
|
|
|
&& aliasedType != cmTarget::INTERFACE_LIBRARY)
|
2013-07-12 09:14:31 +02:00
|
|
|
{
|
|
|
|
cmOStringStream e;
|
|
|
|
e << "cannot create ALIAS target \"" << libName
|
|
|
|
<< "\" because target \"" << aliasedName << "\" is not a library.";
|
2014-03-11 00:04:11 +01:00
|
|
|
this->SetError(e.str());
|
2013-07-12 09:14:31 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if(aliasedTarget->IsImported())
|
|
|
|
{
|
|
|
|
cmOStringStream e;
|
|
|
|
e << "cannot create ALIAS target \"" << libName
|
|
|
|
<< "\" because target \"" << aliasedName << "\" is IMPORTED.";
|
2014-03-11 00:04:11 +01:00
|
|
|
this->SetError(e.str());
|
2013-07-12 09:14:31 +02:00
|
|
|
return false;
|
|
|
|
}
|
2014-03-11 00:04:11 +01:00
|
|
|
this->Makefile->AddAlias(libName, aliasedTarget);
|
2013-07-12 09:14:31 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(importTarget && excludeFromAll)
|
|
|
|
{
|
|
|
|
this->SetError("excludeFromAll with IMPORTED target makes no sense.");
|
|
|
|
return false;
|
|
|
|
}
|
2001-11-08 10:48:47 -05:00
|
|
|
|
2011-08-16 01:26:02 +02:00
|
|
|
/* ideally we should check whether for the linker language of the target
|
2007-06-21 16:23:54 -04:00
|
|
|
CMAKE_${LANG}_CREATE_SHARED_LIBRARY is defined and if not default to
|
2011-08-16 01:26:02 +02:00
|
|
|
STATIC. But at this point we know only the name of the target, but not
|
2007-06-21 16:23:54 -04:00
|
|
|
yet its linker language. */
|
2011-08-16 01:26:02 +02:00
|
|
|
if ((type != cmTarget::STATIC_LIBRARY) &&
|
2012-06-11 08:37:11 -04:00
|
|
|
(type != cmTarget::OBJECT_LIBRARY) &&
|
2013-11-12 10:13:15 +01:00
|
|
|
(type != cmTarget::INTERFACE_LIBRARY) &&
|
2007-06-26 13:05:27 -04:00
|
|
|
(this->Makefile->GetCMakeInstance()->GetPropertyAsBool(
|
|
|
|
"TARGET_SUPPORTS_SHARED_LIBS") == false))
|
2007-06-21 16:23:54 -04:00
|
|
|
{
|
2012-06-11 08: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 09:58:10 -04:00
|
|
|
type = cmTarget::STATIC_LIBRARY;
|
|
|
|
}
|
|
|
|
|
2008-02-11 13:35:39 -05:00
|
|
|
// Handle imported target creation.
|
2008-01-28 08:38:36 -05:00
|
|
|
if(importTarget)
|
|
|
|
{
|
2011-08-10 19:51:07 +02: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 10: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;
|
|
|
|
}
|
2012-11-20 10:58:15 +01:00
|
|
|
if(type == cmTarget::INTERFACE_LIBRARY)
|
|
|
|
{
|
|
|
|
if (!cmGeneratorExpression::IsValidTargetName(libName))
|
|
|
|
{
|
|
|
|
cmOStringStream e;
|
|
|
|
e << "Invalid name for IMPORTED INTERFACE library target: " << libName;
|
2014-03-11 00:04:11 +01:00
|
|
|
this->SetError(e.str());
|
2012-11-20 10:58:15 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
2011-08-10 19:51:07 +02:00
|
|
|
|
2008-01-28 08:38:36 -05:00
|
|
|
// Make sure the target does not already exist.
|
2014-01-15 23:56:38 +01:00
|
|
|
if(this->Makefile->FindTargetToUse(libName))
|
2008-01-28 08:38:36 -05:00
|
|
|
{
|
|
|
|
cmOStringStream e;
|
|
|
|
e << "cannot create imported target \"" << libName
|
|
|
|
<< "\" because another target with the same name already exists.";
|
2014-03-11 00:04:11 +01:00
|
|
|
this->SetError(e.str());
|
2008-01-28 08:38:36 -05:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Create the imported target.
|
2014-03-11 00:04:11 +01:00
|
|
|
this->Makefile->AddImportedTarget(libName, type, importGlobal);
|
2007-06-22 09:58:10 -04:00
|
|
|
return true;
|
|
|
|
}
|
2008-02-11 13:35:39 -05:00
|
|
|
|
2008-08-18 11: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 13:35:39 -05:00
|
|
|
// Enforce name uniqueness.
|
2008-02-11 17:33:46 -05:00
|
|
|
{
|
2008-02-11 13:35:39 -05:00
|
|
|
std::string msg;
|
|
|
|
if(!this->Makefile->EnforceUniqueName(libName, msg))
|
2008-01-28 08:38:36 -05:00
|
|
|
{
|
2014-03-11 00:04:11 +01:00
|
|
|
this->SetError(msg);
|
2008-02-11 13:35:39 -05:00
|
|
|
return false;
|
2008-01-28 08:38:36 -05:00
|
|
|
}
|
2008-02-11 17:33:46 -05:00
|
|
|
}
|
2007-06-22 09:58:10 -04:00
|
|
|
|
2012-11-02 15:47:40 +01:00
|
|
|
std::vector<std::string> srclists;
|
|
|
|
|
|
|
|
if(type == cmTarget::INTERFACE_LIBRARY)
|
|
|
|
{
|
|
|
|
if (!cmGeneratorExpression::IsValidTargetName(libName)
|
|
|
|
|| libName.find("::") != std::string::npos)
|
|
|
|
{
|
|
|
|
cmOStringStream e;
|
|
|
|
e << "Invalid name for INTERFACE library target: " << libName;
|
2014-03-11 00:04:11 +01:00
|
|
|
this->SetError(e.str());
|
2012-11-02 15:47:40 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2014-03-11 00:04:11 +01:00
|
|
|
this->Makefile->AddLibrary(libName,
|
2012-11-02 15:47:40 +01:00
|
|
|
type,
|
|
|
|
srclists,
|
|
|
|
excludeFromAll);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2007-06-22 09: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-21 16:23:54 -04:00
|
|
|
}
|
|
|
|
|
2011-08-16 01:26:02 +02:00
|
|
|
while (s != args.end())
|
2001-11-08 10:48:47 -05:00
|
|
|
{
|
2011-08-16 01:26:02 +02: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
|
|
|
|
2014-03-11 00:04:11 +01:00
|
|
|
this->Makefile->AddLibrary(libName, type, srclists, excludeFromAll);
|
2011-08-16 01:26:02 +02:00
|
|
|
|
2001-04-11 14:59:02 -04:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2002-05-01 16:33:27 -04:00
|
|
|
|