cmake/Source/cmAddLibraryCommand.cxx

298 lines
9.6 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"
2020-02-01 23:06:01 +01:00
#include "cmExecutionStatus.h"
2017-04-14 19:02:05 +02:00
#include "cmGeneratorExpression.h"
#include "cmGlobalGenerator.h"
#include "cmMakefile.h"
2019-11-11 23:01:05 +01:00
#include "cmMessageType.h"
2020-08-30 11:54:41 +02:00
#include "cmPolicies.h"
2015-08-17 11:37:30 +02:00
#include "cmState.h"
2017-04-14 19:02:05 +02:00
#include "cmStateTypes.h"
2020-02-01 23:06:01 +01:00
#include "cmStringAlgorithms.h"
2017-04-14 19:02:05 +02:00
#include "cmTarget.h"
2021-11-20 13:41:27 +01:00
#include "cmValue.h"
2020-02-01 23:06:01 +01:00
bool cmAddLibraryCommand(std::vector<std::string> const& args,
cmExecutionStatus& status)
{
2016-10-30 18:24:19 +01:00
if (args.empty()) {
2020-02-01 23:06:01 +01:00
status.SetError("called with incorrect number of arguments");
return false;
2016-07-09 11:21:54 +02:00
}
2020-02-01 23:06:01 +01:00
cmMakefile& mf = status.GetMakefile();
// 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;
2020-02-01 23:06:01 +01:00
if (cmIsOff(mf.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
2020-02-01 23:06:01 +01:00
auto 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) {
2020-02-01 23:06:01 +01:00
status.SetError(
"INTERFACE library specified with conflicting STATIC type.");
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) {
2020-02-01 23:06:01 +01:00
status.SetError(
"INTERFACE library specified with conflicting SHARED type.");
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) {
2020-02-01 23:06:01 +01:00
status.SetError(
"INTERFACE library specified with conflicting MODULE type.");
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) {
2020-02-01 23:06:01 +01:00
status.SetError(
"INTERFACE library specified with conflicting OBJECT type.");
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) {
2020-02-01 23:06:01 +01:00
status.SetError(
"INTERFACE library specified with conflicting UNKNOWN type.");
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) {
2020-02-01 23:06:01 +01:00
status.SetError(
"INTERFACE library specified with conflicting ALIAS type.");
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) {
2020-02-01 23:06:01 +01:00
status.SetError(
"INTERFACE library specified with conflicting/multiple types.");
2014-08-03 19:52:23 +02:00
return false;
2016-07-09 11:21:54 +02:00
}
if (isAlias) {
2020-02-01 23:06:01 +01:00
status.SetError(
"INTERFACE library specified with conflicting ALIAS type.");
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") {
++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") {
2020-02-01 23:06:01 +01:00
status.SetError(
"GLOBAL option may only be used with IMPORTED libraries.");
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
2022-08-04 22:12:04 +02:00
if (importTarget && !importGlobal) {
importGlobal = mf.IsImportedTargetGlobalScope();
}
2017-04-14 19:02:05 +02:00
if (type == cmStateEnums::INTERFACE_LIBRARY) {
2016-07-09 11:21:54 +02:00
if (importGlobal && !importTarget) {
2020-02-01 23:06:01 +01:00
status.SetError(
"INTERFACE library specified as GLOBAL, but not as IMPORTED.");
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
}
2020-02-01 23:06:01 +01:00
if (!nameOk && !mf.CheckCMP0037(libName, type)) {
2018-04-23 21:13:27 +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
if (isAlias) {
if (!cmGeneratorExpression::IsValidTargetName(libName)) {
2020-02-01 23:06:01 +01:00
status.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) {
2020-02-01 23:06:01 +01:00
status.SetError("EXCLUDE_FROM_ALL with ALIAS makes no sense.");
2013-11-03 12:27:13 +02:00
return false;
2016-07-09 11:21:54 +02:00
}
if (importTarget || importGlobal) {
2020-02-01 23:06:01 +01:00
status.SetError("IMPORTED with ALIAS is not allowed.");
2013-11-03 12:27:13 +02:00
return false;
2016-07-09 11:21:54 +02:00
}
if (args.size() != 3) {
2020-02-01 23:06:01 +01:00
status.SetError("ALIAS requires exactly one target argument.");
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
2020-08-30 11:54:41 +02:00
if (mf.GetPolicyStatus(cmPolicies::CMP0107) == cmPolicies::NEW) {
// Make sure the target does not already exist.
if (mf.FindTargetToUse(libName)) {
status.SetError(cmStrCat(
"cannot create ALIAS target \"", libName,
"\" because another target with the same name already exists."));
return false;
}
}
2018-04-23 21:13:27 +02:00
std::string const& aliasedName = *s;
2020-02-01 23:06:01 +01:00
if (mf.IsAlias(aliasedName)) {
status.SetError(cmStrCat("cannot create ALIAS target \"", libName,
"\" because target \"", aliasedName,
"\" is itself an ALIAS."));
2013-11-03 12:27:13 +02:00
return false;
2016-07-09 11:21:54 +02:00
}
2020-02-01 23:06:01 +01:00
cmTarget* aliasedTarget = mf.FindTargetToUse(aliasedName, true);
2016-07-09 11:21:54 +02:00
if (!aliasedTarget) {
2020-02-01 23:06:01 +01:00
status.SetError(cmStrCat("cannot create ALIAS target \"", libName,
"\" because target \"", aliasedName,
"\" does not already exist."));
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 &&
2019-11-11 23:01:05 +01:00
aliasedType != cmStateEnums::INTERFACE_LIBRARY &&
!(aliasedType == cmStateEnums::UNKNOWN_LIBRARY &&
aliasedTarget->IsImported())) {
2020-02-01 23:06:01 +01:00
status.SetError(cmStrCat("cannot create ALIAS target \"", libName,
"\" because target \"", aliasedName,
"\" is not a library."));
2013-11-03 12:27:13 +02:00
return false;
2016-07-09 11:21:54 +02:00
}
2020-08-30 11:54:41 +02:00
mf.AddAlias(libName, aliasedName,
!aliasedTarget->IsImported() ||
aliasedTarget->IsImportedGloballyVisible());
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) {
2020-02-01 23:06:01 +01:00
status.SetError("excludeFromAll with IMPORTED target makes no sense.");
2013-11-03 12:27:13 +02:00
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) &&
2020-02-01 23:06:01 +01:00
!mf.GetState()->GetGlobalPropertyAsBool("TARGET_SUPPORTS_SHARED_LIBS")) {
mf.IssueMessage(
MessageType::AUTHOR_WARNING,
cmStrCat(
"ADD_LIBRARY called with ",
(type == cmStateEnums::SHARED_LIBRARY ? "SHARED" : "MODULE"),
" option but the target platform does not support dynamic linking. ",
"Building a STATIC library instead. This may lead to problems."));
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) {
2020-02-01 23:06:01 +01:00
status.SetError("called with IMPORTED argument but no library type.");
2012-02-18 12:40:36 +02:00
return false;
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)) {
2020-02-01 23:06:01 +01:00
status.SetError(cmStrCat(
"Invalid name for IMPORTED INTERFACE library target: ", libName));
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.
2020-02-01 23:06:01 +01:00
if (mf.FindTargetToUse(libName)) {
status.SetError(cmStrCat(
"cannot create imported target \"", libName,
"\" because another target with the same name already exists."));
return false;
2016-07-09 11:21:54 +02:00
}
// Create the imported target.
2020-02-01 23:06:01 +01:00
mf.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) {
2020-02-01 23:06:01 +01:00
mf.IssueMessage(
2019-11-11 23:01:05 +01:00
MessageType::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;
2020-02-01 23:06:01 +01:00
if (!mf.EnforceUniqueName(libName, msg)) {
status.SetError(msg);
2016-07-09 11:21:54 +02:00
return false;
}
}
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) {
2020-02-01 23:06:01 +01:00
status.SetError(
cmStrCat("Invalid name for INTERFACE library target: ", libName));
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
2021-09-14 00:13:48 +02:00
std::vector<std::string> srcs(s, args.end());
mf.AddLibrary(libName, type, srcs, excludeFromAll);
2012-02-18 12:40:36 +02:00
return true;
}