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