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 "cmAddExecutableCommand.h"
|
|
|
|
|
|
|
|
// cmExecutableCommand
|
2008-01-23 10:28:26 -05:00
|
|
|
bool cmAddExecutableCommand
|
|
|
|
::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() < 2 )
|
2001-04-11 14:59:02 -04:00
|
|
|
{
|
|
|
|
this->SetError("called with incorrect number of arguments");
|
|
|
|
return false;
|
|
|
|
}
|
2002-12-11 18:13:33 -05:00
|
|
|
std::vector<std::string>::const_iterator s = args.begin();
|
2001-11-01 13:09:08 -05:00
|
|
|
|
|
|
|
std::string exename = *s;
|
|
|
|
|
2001-05-11 10:53:17 -04:00
|
|
|
++s;
|
2002-02-25 16:57:09 -05:00
|
|
|
bool use_win32 = false;
|
2004-02-28 18:59:19 -05:00
|
|
|
bool use_macbundle = false;
|
2007-03-12 10:26:59 -04:00
|
|
|
bool excludeFromAll = false;
|
2007-05-22 10:24:59 -04:00
|
|
|
bool importTarget = false;
|
2012-01-25 13:39:26 -05:00
|
|
|
bool importGlobal = false;
|
2013-07-12 09:14:31 +02:00
|
|
|
bool isAlias = false;
|
2004-02-28 18:59:19 -05:00
|
|
|
while ( s != args.end() )
|
2001-05-11 10:53:17 -04:00
|
|
|
{
|
2004-02-28 18:59:19 -05:00
|
|
|
if (*s == "WIN32")
|
|
|
|
{
|
|
|
|
++s;
|
|
|
|
use_win32 = true;
|
|
|
|
}
|
2004-04-23 10:03:01 -04:00
|
|
|
else if ( *s == "MACOSX_BUNDLE" )
|
2004-02-28 18:59:19 -05:00
|
|
|
{
|
|
|
|
++s;
|
|
|
|
use_macbundle = true;
|
|
|
|
}
|
2006-10-02 12:01:20 -04:00
|
|
|
else if(*s == "EXCLUDE_FROM_ALL")
|
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-05-22 10:24:59 -04:00
|
|
|
{
|
|
|
|
++s;
|
|
|
|
importTarget = true;
|
|
|
|
}
|
2012-01-25 13:39:26 -05:00
|
|
|
else if(importTarget && *s == "GLOBAL")
|
|
|
|
{
|
|
|
|
++s;
|
|
|
|
importGlobal = true;
|
|
|
|
}
|
2013-07-12 09:14:31 +02:00
|
|
|
else if(*s == "ALIAS")
|
|
|
|
{
|
|
|
|
++s;
|
|
|
|
isAlias = true;
|
|
|
|
}
|
2004-02-28 18:59:19 -05:00
|
|
|
else
|
|
|
|
{
|
|
|
|
break;
|
|
|
|
}
|
2001-05-11 10:53:17 -04:00
|
|
|
}
|
2008-01-28 08:38:36 -05:00
|
|
|
|
2013-11-16 11:07:24 +01:00
|
|
|
bool nameOk = cmGeneratorExpression::IsValidTargetName(exename) &&
|
|
|
|
!cmGlobalGenerator::IsReservedTarget(exename);
|
|
|
|
|
2013-11-05 17:32:30 +01:00
|
|
|
if (nameOk && !importTarget && !isAlias)
|
|
|
|
{
|
|
|
|
nameOk = exename.find(":") == std::string::npos;
|
|
|
|
}
|
|
|
|
if (!nameOk)
|
|
|
|
{
|
|
|
|
cmake::MessageType messageType = cmake::AUTHOR_WARNING;
|
|
|
|
bool issueMessage = false;
|
|
|
|
switch(this->Makefile->GetPolicyStatus(cmPolicies::CMP0037))
|
|
|
|
{
|
|
|
|
case cmPolicies::WARN:
|
|
|
|
issueMessage = true;
|
|
|
|
case cmPolicies::OLD:
|
|
|
|
break;
|
|
|
|
case cmPolicies::NEW:
|
|
|
|
case cmPolicies::REQUIRED_IF_USED:
|
|
|
|
case cmPolicies::REQUIRED_ALWAYS:
|
|
|
|
issueMessage = true;
|
|
|
|
messageType = cmake::FATAL_ERROR;
|
|
|
|
}
|
|
|
|
if (issueMessage)
|
|
|
|
{
|
|
|
|
cmOStringStream e;
|
|
|
|
e << (this->Makefile->GetPolicies()
|
|
|
|
->GetPolicyWarning(cmPolicies::CMP0037)) << "\n";
|
2013-11-16 11:07:24 +01:00
|
|
|
e << "The target name \"" << exename <<
|
|
|
|
"\" 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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-01-28 08:38:36 -05:00
|
|
|
// Special modifiers are not allowed with IMPORTED signature.
|
2011-08-09 09:18:37 +02:00
|
|
|
if(importTarget
|
2011-08-16 01:45:05 +02:00
|
|
|
&& (use_win32 || use_macbundle || excludeFromAll))
|
2008-01-28 08:38:36 -05:00
|
|
|
{
|
|
|
|
if(use_win32)
|
|
|
|
{
|
|
|
|
this->SetError("may not be given WIN32 for an IMPORTED target.");
|
|
|
|
}
|
|
|
|
else if(use_macbundle)
|
|
|
|
{
|
|
|
|
this->SetError(
|
|
|
|
"may not be given MACOSX_BUNDLE for an IMPORTED target.");
|
|
|
|
}
|
|
|
|
else // if(excludeFromAll)
|
|
|
|
{
|
|
|
|
this->SetError(
|
|
|
|
"may not be given EXCLUDE_FROM_ALL for an IMPORTED target.");
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
2013-07-12 09:14:31 +02:00
|
|
|
if (isAlias)
|
|
|
|
{
|
2014-03-11 00:04:11 +01:00
|
|
|
if(!cmGeneratorExpression::IsValidTargetName(exename))
|
2013-07-12 09:14:31 +02:00
|
|
|
{
|
2014-03-11 00:04:11 +01:00
|
|
|
this->SetError("Invalid name for ALIAS: " + exename);
|
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 \"" << exename
|
|
|
|
<< "\" 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 \"" << exename
|
|
|
|
<< "\" 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 type = aliasedTarget->GetType();
|
|
|
|
if(type != cmTarget::EXECUTABLE)
|
|
|
|
{
|
|
|
|
cmOStringStream e;
|
|
|
|
e << "cannot create ALIAS target \"" << exename
|
|
|
|
<< "\" because target \"" << aliasedName << "\" is not an "
|
|
|
|
"executable.";
|
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 \"" << exename
|
|
|
|
<< "\" 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(exename, aliasedTarget);
|
2013-07-12 09:14:31 +02:00
|
|
|
return true;
|
|
|
|
}
|
2008-01-28 08:38:36 -05:00
|
|
|
|
2008-02-11 13:35:39 -05:00
|
|
|
// Handle imported target creation.
|
2008-01-28 08:38:36 -05:00
|
|
|
if(importTarget)
|
2007-05-22 10:24:59 -04: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(exename))
|
2008-01-28 08:38:36 -05:00
|
|
|
{
|
|
|
|
cmOStringStream e;
|
|
|
|
e << "cannot create imported target \"" << exename
|
|
|
|
<< "\" 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(exename, cmTarget::EXECUTABLE,
|
2012-01-25 13:39:26 -05:00
|
|
|
importGlobal);
|
2007-05-22 10:24:59 -04:00
|
|
|
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(exename, 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
|
|
|
}
|
2002-02-25 16:57:09 -05:00
|
|
|
|
2005-06-08 16:39:29 -04:00
|
|
|
if (s == args.end())
|
|
|
|
{
|
2006-05-10 13:50:44 -04:00
|
|
|
this->SetError
|
|
|
|
("called with incorrect number of arguments, no sources provided");
|
2005-06-08 16:39:29 -04:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2002-02-25 16:57:09 -05:00
|
|
|
std::vector<std::string> srclists(s, args.end());
|
2006-10-02 11:14:00 -04:00
|
|
|
cmTarget* tgt = this->Makefile->AddExecutable(exename.c_str(), srclists,
|
2007-03-12 10:26:59 -04:00
|
|
|
excludeFromAll);
|
2004-02-28 18:59:19 -05:00
|
|
|
if ( use_win32 )
|
|
|
|
{
|
|
|
|
tgt->SetProperty("WIN32_EXECUTABLE", "ON");
|
|
|
|
}
|
|
|
|
if ( use_macbundle)
|
|
|
|
{
|
|
|
|
tgt->SetProperty("MACOSX_BUNDLE", "ON");
|
|
|
|
}
|
|
|
|
|
2001-04-11 14:59:02 -04:00
|
|
|
return true;
|
|
|
|
}
|