cmake/Source/cmAddLibraryCommand.cxx

344 lines
11 KiB
C++
Raw Normal View History

2016-10-30 18:24:19 +01:00
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
file Copyright.txt or https://cmake.org/licensing for details. */
#include "cmAddLibraryCommand.h"
2017-04-14 19:02:05 +02:00
#include <sstream>
#include "cmGeneratorExpression.h"
#include "cmGlobalGenerator.h"
#include "cmMakefile.h"
2015-08-17 11:37:30 +02:00
#include "cmState.h"
2017-04-14 19:02:05 +02:00
#include "cmStateTypes.h"
#include "cmSystemTools.h"
#include "cmTarget.h"
2016-07-09 11:21:54 +02:00
#include "cmake.h"
2017-04-14 19:02:05 +02:00
class cmExecutionStatus;
// cmLibraryCommand
2016-07-09 11:21:54 +02:00
bool cmAddLibraryCommand::InitialPass(std::vector<std::string> const& args,
cmExecutionStatus&)
{
2016-10-30 18:24:19 +01:00
if (args.empty()) {
this->SetError("called with incorrect number of arguments");
return false;
2016-07-09 11:21:54 +02:00
}
// Library type defaults to value of BUILD_SHARED_LIBS, if it exists,
// otherwise it defaults to static library.
2017-04-14 19:02:05 +02:00
cmStateEnums::TargetType type = cmStateEnums::SHARED_LIBRARY;
2016-07-09 11:21:54 +02:00
if (cmSystemTools::IsOff(
this->Makefile->GetDefinition("BUILD_SHARED_LIBS"))) {
2017-04-14 19:02:05 +02:00
type = cmStateEnums::STATIC_LIBRARY;
2016-07-09 11:21:54 +02:00
}
bool excludeFromAll = false;
bool importTarget = false;
2012-04-19 19:04:21 +03:00
bool importGlobal = false;
2012-02-18 12:40:36 +02:00
std::vector<std::string>::const_iterator s = args.begin();
2017-07-20 19:35:53 +02:00
std::string const& libName = *s;
++s;
2012-02-18 12:40:36 +02:00
// 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. There may be two keyword arguments, check for them
bool haveSpecifiedType = false;
2013-11-03 12:27:13 +02:00
bool isAlias = false;
2016-07-09 11:21:54 +02:00
while (s != args.end()) {
std::string libType = *s;
2016-07-09 11:21:54 +02:00
if (libType == "STATIC") {
2017-04-14 19:02:05 +02:00
if (type == cmStateEnums::INTERFACE_LIBRARY) {
2015-04-27 22:25:09 +02:00
std::ostringstream e;
2014-08-03 19:52:23 +02:00
e << "INTERFACE library specified with conflicting STATIC type.";
2015-04-27 22:25:09 +02:00
this->SetError(e.str());
2014-08-03 19:52:23 +02:00
return false;
2016-07-09 11:21:54 +02:00
}
++s;
2017-04-14 19:02:05 +02:00
type = cmStateEnums::STATIC_LIBRARY;
haveSpecifiedType = true;
2016-07-09 11:21:54 +02:00
} else if (libType == "SHARED") {
2017-04-14 19:02:05 +02:00
if (type == cmStateEnums::INTERFACE_LIBRARY) {
2015-04-27 22:25:09 +02:00
std::ostringstream e;
2014-08-03 19:52:23 +02:00
e << "INTERFACE library specified with conflicting SHARED type.";
2015-04-27 22:25:09 +02:00
this->SetError(e.str());
2014-08-03 19:52:23 +02:00
return false;
2016-07-09 11:21:54 +02:00
}
++s;
2017-04-14 19:02:05 +02:00
type = cmStateEnums::SHARED_LIBRARY;
haveSpecifiedType = true;
2016-07-09 11:21:54 +02:00
} else if (libType == "MODULE") {
2017-04-14 19:02:05 +02:00
if (type == cmStateEnums::INTERFACE_LIBRARY) {
2015-04-27 22:25:09 +02:00
std::ostringstream e;
2014-08-03 19:52:23 +02:00
e << "INTERFACE library specified with conflicting MODULE type.";
2015-04-27 22:25:09 +02:00
this->SetError(e.str());
2014-08-03 19:52:23 +02:00
return false;
2016-07-09 11:21:54 +02:00
}
++s;
2017-04-14 19:02:05 +02:00
type = cmStateEnums::MODULE_LIBRARY;
haveSpecifiedType = true;
2016-07-09 11:21:54 +02:00
} else if (libType == "OBJECT") {
2017-04-14 19:02:05 +02:00
if (type == cmStateEnums::INTERFACE_LIBRARY) {
2015-04-27 22:25:09 +02:00
std::ostringstream e;
2014-08-03 19:52:23 +02:00
e << "INTERFACE library specified with conflicting OBJECT type.";
2015-04-27 22:25:09 +02:00
this->SetError(e.str());
2014-08-03 19:52:23 +02:00
return false;
2016-07-09 11:21:54 +02:00
}
2012-04-19 19:04:21 +03:00
++s;
2017-04-14 19:02:05 +02:00
type = cmStateEnums::OBJECT_LIBRARY;
2012-04-19 19:04:21 +03:00
haveSpecifiedType = true;
2016-07-09 11:21:54 +02:00
} else if (libType == "UNKNOWN") {
2017-04-14 19:02:05 +02:00
if (type == cmStateEnums::INTERFACE_LIBRARY) {
2015-04-27 22:25:09 +02:00
std::ostringstream e;
2014-08-03 19:52:23 +02:00
e << "INTERFACE library specified with conflicting UNKNOWN type.";
2015-04-27 22:25:09 +02:00
this->SetError(e.str());
2014-08-03 19:52:23 +02:00
return false;
2016-07-09 11:21:54 +02:00
}
++s;
2017-04-14 19:02:05 +02:00
type = cmStateEnums::UNKNOWN_LIBRARY;
haveSpecifiedType = true;
2016-07-09 11:21:54 +02:00
} else if (libType == "ALIAS") {
2017-04-14 19:02:05 +02:00
if (type == cmStateEnums::INTERFACE_LIBRARY) {
2015-04-27 22:25:09 +02:00
std::ostringstream e;
2014-08-03 19:52:23 +02:00
e << "INTERFACE library specified with conflicting ALIAS type.";
2015-04-27 22:25:09 +02:00
this->SetError(e.str());
2014-08-03 19:52:23 +02:00
return false;
2016-07-09 11:21:54 +02:00
}
2013-11-03 12:27:13 +02:00
++s;
isAlias = true;
2016-07-09 11:21:54 +02:00
} else if (libType == "INTERFACE") {
if (haveSpecifiedType) {
2015-04-27 22:25:09 +02:00
std::ostringstream e;
2014-08-03 19:52:23 +02:00
e << "INTERFACE library specified with conflicting/multiple types.";
2015-04-27 22:25:09 +02:00
this->SetError(e.str());
2014-08-03 19:52:23 +02:00
return false;
2016-07-09 11:21:54 +02:00
}
if (isAlias) {
2015-04-27 22:25:09 +02:00
std::ostringstream e;
2014-08-03 19:52:23 +02:00
e << "INTERFACE library specified with conflicting ALIAS type.";
2015-04-27 22:25:09 +02:00
this->SetError(e.str());
2014-08-03 19:52:23 +02:00
return false;
2016-07-09 11:21:54 +02:00
}
if (excludeFromAll) {
2015-04-27 22:25:09 +02:00
std::ostringstream e;
2014-08-03 19:52:23 +02:00
e << "INTERFACE library may not be used with EXCLUDE_FROM_ALL.";
2015-04-27 22:25:09 +02:00
this->SetError(e.str());
2014-08-03 19:52:23 +02:00
return false;
2016-07-09 11:21:54 +02:00
}
2014-08-03 19:52:23 +02:00
++s;
2017-04-14 19:02:05 +02:00
type = cmStateEnums::INTERFACE_LIBRARY;
2014-08-03 19:52:23 +02:00
haveSpecifiedType = true;
2016-07-09 11:21:54 +02:00
} else if (*s == "EXCLUDE_FROM_ALL") {
2017-04-14 19:02:05 +02:00
if (type == cmStateEnums::INTERFACE_LIBRARY) {
2015-04-27 22:25:09 +02:00
std::ostringstream e;
2014-08-03 19:52:23 +02:00
e << "INTERFACE library may not be used with EXCLUDE_FROM_ALL.";
2015-04-27 22:25:09 +02:00
this->SetError(e.str());
2014-08-03 19:52:23 +02:00
return false;
2016-07-09 11:21:54 +02:00
}
++s;
excludeFromAll = true;
2016-07-09 11:21:54 +02:00
} else if (*s == "IMPORTED") {
++s;
importTarget = true;
2016-07-09 11:21:54 +02:00
} else if (importTarget && *s == "GLOBAL") {
2012-04-19 19:04:21 +03:00
++s;
importGlobal = true;
2017-04-14 19:02:05 +02:00
} else if (type == cmStateEnums::INTERFACE_LIBRARY && *s == "GLOBAL") {
2015-04-27 22:25:09 +02:00
std::ostringstream e;
2014-08-03 19:52:23 +02:00
e << "GLOBAL option may only be used with IMPORTED libraries.";
2015-04-27 22:25:09 +02:00
this->SetError(e.str());
2014-08-03 19:52:23 +02:00
return false;
2016-07-09 11:21:54 +02:00
} else {
break;
}
2016-07-09 11:21:54 +02:00
}
2014-08-03 19:52:23 +02:00
2017-04-14 19:02:05 +02:00
if (type == cmStateEnums::INTERFACE_LIBRARY) {
2016-07-09 11:21:54 +02:00
if (s != args.end()) {
2015-04-27 22:25:09 +02:00
std::ostringstream e;
2014-08-03 19:52:23 +02:00
e << "INTERFACE library requires no source arguments.";
2015-04-27 22:25:09 +02:00
this->SetError(e.str());
2014-08-03 19:52:23 +02:00
return false;
2016-07-09 11:21:54 +02:00
}
if (importGlobal && !importTarget) {
2015-04-27 22:25:09 +02:00
std::ostringstream e;
2014-08-03 19:52:23 +02:00
e << "INTERFACE library specified as GLOBAL, but not as IMPORTED.";
2015-04-27 22:25:09 +02:00
this->SetError(e.str());
2014-08-03 19:52:23 +02:00
return false;
}
2016-07-09 11:21:54 +02:00
}
2014-08-03 19:52:23 +02:00
bool nameOk = cmGeneratorExpression::IsValidTargetName(libName) &&
!cmGlobalGenerator::IsReservedTarget(libName);
2016-07-09 11:21:54 +02:00
if (nameOk && !importTarget && !isAlias) {
2017-04-14 19:02:05 +02:00
nameOk = libName.find(':') == std::string::npos;
2016-07-09 11:21:54 +02:00
}
2018-04-23 21:13:27 +02:00
if (!nameOk && !this->Makefile->CheckCMP0037(libName, type)) {
return false;
2016-07-09 11:21:54 +02:00
}
2014-08-03 19:52:23 +02:00
2016-07-09 11:21:54 +02:00
if (isAlias) {
if (!cmGeneratorExpression::IsValidTargetName(libName)) {
2015-04-27 22:25:09 +02:00
this->SetError("Invalid name for ALIAS: " + libName);
2013-11-03 12:27:13 +02:00
return false;
2016-07-09 11:21:54 +02:00
}
if (excludeFromAll) {
2013-11-03 12:27:13 +02:00
this->SetError("EXCLUDE_FROM_ALL with ALIAS makes no sense.");
return false;
2016-07-09 11:21:54 +02:00
}
if (importTarget || importGlobal) {
2013-11-03 12:27:13 +02:00
this->SetError("IMPORTED with ALIAS is not allowed.");
return false;
2016-07-09 11:21:54 +02:00
}
if (args.size() != 3) {
2015-04-27 22:25:09 +02:00
std::ostringstream e;
2013-11-03 12:27:13 +02:00
e << "ALIAS requires exactly one target argument.";
2015-04-27 22:25:09 +02:00
this->SetError(e.str());
2013-11-03 12:27:13 +02:00
return false;
2016-07-09 11:21:54 +02:00
}
2013-11-03 12:27:13 +02:00
2018-04-23 21:13:27 +02:00
std::string const& aliasedName = *s;
2016-07-09 11:21:54 +02:00
if (this->Makefile->IsAlias(aliasedName)) {
2015-04-27 22:25:09 +02:00
std::ostringstream e;
2016-07-09 11:21:54 +02:00
e << "cannot create ALIAS target \"" << libName << "\" because target \""
<< aliasedName << "\" is itself an ALIAS.";
2015-04-27 22:25:09 +02:00
this->SetError(e.str());
2013-11-03 12:27:13 +02:00
return false;
2016-07-09 11:21:54 +02:00
}
cmTarget* aliasedTarget =
this->Makefile->FindTargetToUse(aliasedName, true);
if (!aliasedTarget) {
2015-04-27 22:25:09 +02:00
std::ostringstream e;
2016-07-09 11:21:54 +02:00
e << "cannot create ALIAS target \"" << libName << "\" because target \""
<< aliasedName << "\" does not already "
"exist.";
2015-04-27 22:25:09 +02:00
this->SetError(e.str());
2013-11-03 12:27:13 +02:00
return false;
2016-07-09 11:21:54 +02:00
}
2017-04-14 19:02:05 +02: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-04-27 22:25:09 +02:00
std::ostringstream e;
2016-07-09 11:21:54 +02:00
e << "cannot create ALIAS target \"" << libName << "\" because target \""
<< aliasedName << "\" is not a library.";
2015-04-27 22:25:09 +02:00
this->SetError(e.str());
2013-11-03 12:27:13 +02:00
return false;
2016-07-09 11:21:54 +02:00
}
2018-05-19 10:45:57 +02:00
if (aliasedTarget->IsImported() &&
!aliasedTarget->IsImportedGloballyVisible()) {
std::ostringstream e;
e << "cannot create ALIAS target \"" << libName << "\" because target \""
<< aliasedName << "\" is imported but not globally visible.";
this->SetError(e.str());
return false;
}
2016-03-13 13:35:51 +01:00
this->Makefile->AddAlias(libName, aliasedName);
2013-11-03 12:27:13 +02:00
return true;
2016-07-09 11:21:54 +02:00
}
2013-11-03 12:27:13 +02:00
2016-07-09 11:21:54 +02:00
if (importTarget && excludeFromAll) {
2013-11-03 12:27:13 +02:00
this->SetError("excludeFromAll with IMPORTED target makes no sense.");
return false;
2016-07-09 11:21:54 +02:00
}
2012-02-18 12:40:36 +02:00
/* ideally we should check whether for the linker language of the target
CMAKE_${LANG}_CREATE_SHARED_LIBRARY is defined and if not default to
2012-02-18 12:40:36 +02:00
STATIC. But at this point we know only the name of the target, but not
yet its linker language. */
2017-04-14 19:02:05 +02:00
if ((type == cmStateEnums::SHARED_LIBRARY ||
type == cmStateEnums::MODULE_LIBRARY) &&
!this->Makefile->GetState()->GetGlobalPropertyAsBool(
"TARGET_SUPPORTS_SHARED_LIBS")) {
2015-04-27 22:25:09 +02:00
std::ostringstream w;
2016-07-09 11:21:54 +02:00
w << "ADD_LIBRARY called with "
2017-04-14 19:02:05 +02:00
<< (type == cmStateEnums::SHARED_LIBRARY ? "SHARED" : "MODULE")
2016-07-09 11:21:54 +02:00
<< " option but the target platform does not support dynamic linking. "
"Building a STATIC library instead. This may lead to problems.";
2012-06-27 20:52:58 +03:00
this->Makefile->IssueMessage(cmake::AUTHOR_WARNING, w.str());
2017-04-14 19:02:05 +02:00
type = cmStateEnums::STATIC_LIBRARY;
2016-07-09 11:21:54 +02:00
}
// Handle imported target creation.
2016-07-09 11:21:54 +02:00
if (importTarget) {
2012-02-18 12:40:36 +02:00
// The IMPORTED signature requires a type to be specified explicitly.
2016-07-09 11:21:54 +02:00
if (!haveSpecifiedType) {
2012-02-18 12:40:36 +02:00
this->SetError("called with IMPORTED argument but no library type.");
return false;
2016-07-09 11:21:54 +02:00
}
2017-04-14 19:02:05 +02:00
if (type == cmStateEnums::OBJECT_LIBRARY) {
2017-07-20 19:35:53 +02:00
std::string reason;
if (!this->Makefile->GetGlobalGenerator()->HasKnownObjectFileLocation(
&reason)) {
this->Makefile->IssueMessage(
cmake::FATAL_ERROR,
"The OBJECT library type may not be used for IMPORTED libraries" +
reason + ".");
return true;
}
2016-07-09 11:21:54 +02:00
}
2017-04-14 19:02:05 +02:00
if (type == cmStateEnums::INTERFACE_LIBRARY) {
2016-07-09 11:21:54 +02:00
if (!cmGeneratorExpression::IsValidTargetName(libName)) {
2015-04-27 22:25:09 +02:00
std::ostringstream e;
2014-08-03 19:52:23 +02:00
e << "Invalid name for IMPORTED INTERFACE library target: " << libName;
2015-04-27 22:25:09 +02:00
this->SetError(e.str());
2014-08-03 19:52:23 +02:00
return false;
}
2016-07-09 11:21:54 +02:00
}
2012-02-18 12:40:36 +02:00
// Make sure the target does not already exist.
2016-07-09 11:21:54 +02:00
if (this->Makefile->FindTargetToUse(libName)) {
2015-04-27 22:25:09 +02:00
std::ostringstream e;
e << "cannot create imported target \"" << libName
<< "\" because another target with the same name already exists.";
2015-04-27 22:25:09 +02:00
this->SetError(e.str());
return false;
2016-07-09 11:21:54 +02:00
}
// Create the imported target.
2015-04-27 22:25:09 +02:00
this->Makefile->AddImportedTarget(libName, type, importGlobal);
return true;
2016-07-09 11:21:54 +02:00
}
// A non-imported target may not have UNKNOWN type.
2017-04-14 19:02:05 +02:00
if (type == cmStateEnums::UNKNOWN_LIBRARY) {
this->Makefile->IssueMessage(
cmake::FATAL_ERROR,
2016-07-09 11:21:54 +02:00
"The UNKNOWN library type may be used only for IMPORTED libraries.");
return true;
2016-07-09 11:21:54 +02:00
}
// Enforce name uniqueness.
{
2016-07-09 11:21:54 +02:00
std::string msg;
if (!this->Makefile->EnforceUniqueName(libName, msg)) {
this->SetError(msg);
return false;
}
}
2014-08-03 19:52:23 +02:00
std::vector<std::string> srclists;
2017-04-14 19:02:05 +02:00
if (type == cmStateEnums::INTERFACE_LIBRARY) {
2016-07-09 11:21:54 +02:00
if (!cmGeneratorExpression::IsValidTargetName(libName) ||
libName.find("::") != std::string::npos) {
2015-04-27 22:25:09 +02:00
std::ostringstream e;
2014-08-03 19:52:23 +02:00
e << "Invalid name for INTERFACE library target: " << libName;
2015-04-27 22:25:09 +02:00
this->SetError(e.str());
2014-08-03 19:52:23 +02:00
return false;
2016-07-09 11:21:54 +02:00
}
2014-08-03 19:52:23 +02:00
2016-07-09 11:21:54 +02:00
this->Makefile->AddLibrary(libName, type, srclists, excludeFromAll);
2014-08-03 19:52:23 +02:00
return true;
2016-07-09 11:21:54 +02:00
}
2014-08-03 19:52:23 +02:00
2015-08-17 11:37:30 +02:00
srclists.insert(srclists.end(), s, args.end());
2015-04-27 22:25:09 +02:00
this->Makefile->AddLibrary(libName, type, srclists, excludeFromAll);
2012-02-18 12:40:36 +02:00
return true;
}