2016-09-27 15:01:08 -04:00
|
|
|
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
|
|
|
file Copyright.txt or https://cmake.org/licensing for details. */
|
2005-01-24 17:35:54 -05:00
|
|
|
#include "cmLocalXCodeGenerator.h"
|
2016-04-29 09:40:20 -04:00
|
|
|
|
2016-09-01 20:59:28 +02:00
|
|
|
#include "cmGeneratorTarget.h"
|
2007-02-16 16:12:17 -05:00
|
|
|
#include "cmGlobalXCodeGenerator.h"
|
2016-04-29 10:53:13 -04:00
|
|
|
#include "cmSourceFile.h"
|
2005-01-24 17:35:54 -05:00
|
|
|
|
2016-11-23 00:41:44 +01:00
|
|
|
class cmGeneratorTarget;
|
|
|
|
class cmGlobalGenerator;
|
|
|
|
class cmMakefile;
|
|
|
|
|
2015-05-03 16:50:34 +02:00
|
|
|
cmLocalXCodeGenerator::cmLocalXCodeGenerator(cmGlobalGenerator* gg,
|
2015-08-02 11:41:51 +02:00
|
|
|
cmMakefile* mf)
|
|
|
|
: cmLocalGenerator(gg, mf)
|
2005-01-24 17:35:54 -05:00
|
|
|
{
|
2006-03-24 09:15:05 -05:00
|
|
|
// the global generator does this, so do not
|
|
|
|
// put these flags into the language flags
|
|
|
|
this->EmitUniversalBinaryFlags = false;
|
2005-01-24 17:35:54 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
cmLocalXCodeGenerator::~cmLocalXCodeGenerator()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2016-05-16 10:34:04 -04:00
|
|
|
std::string cmLocalXCodeGenerator::GetTargetDirectory(
|
|
|
|
cmGeneratorTarget const*) const
|
2007-08-01 15:25:40 -04:00
|
|
|
{
|
|
|
|
// No per-target directory for this generator (yet).
|
|
|
|
return "";
|
|
|
|
}
|
2013-06-27 11:49:06 -04:00
|
|
|
|
|
|
|
void cmLocalXCodeGenerator::AppendFlagEscape(std::string& flags,
|
2014-02-08 00:29:59 -05:00
|
|
|
const std::string& rawFlag)
|
2013-06-27 11:49:06 -04:00
|
|
|
{
|
|
|
|
cmGlobalXCodeGenerator* gg =
|
|
|
|
static_cast<cmGlobalXCodeGenerator*>(this->GlobalGenerator);
|
|
|
|
gg->AppendFlag(flags, rawFlag);
|
|
|
|
}
|
2013-12-18 21:25:29 -07:00
|
|
|
|
|
|
|
void cmLocalXCodeGenerator::Generate()
|
|
|
|
{
|
|
|
|
cmLocalGenerator::Generate();
|
|
|
|
|
2015-10-25 12:59:39 +01:00
|
|
|
std::vector<cmGeneratorTarget*> targets = this->GetGeneratorTargets();
|
2016-05-16 10:34:04 -04:00
|
|
|
for (std::vector<cmGeneratorTarget*>::iterator iter = targets.begin();
|
|
|
|
iter != targets.end(); ++iter) {
|
2015-10-25 12:59:39 +01:00
|
|
|
(*iter)->HasMacOSXRpathInstallNameDir("");
|
2016-05-16 10:34:04 -04:00
|
|
|
}
|
2013-12-18 21:25:29 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
void cmLocalXCodeGenerator::GenerateInstallRules()
|
|
|
|
{
|
|
|
|
cmLocalGenerator::GenerateInstallRules();
|
|
|
|
|
2015-10-25 12:59:39 +01:00
|
|
|
std::vector<cmGeneratorTarget*> targets = this->GetGeneratorTargets();
|
2016-05-16 10:34:04 -04:00
|
|
|
for (std::vector<cmGeneratorTarget*>::iterator iter = targets.begin();
|
|
|
|
iter != targets.end(); ++iter) {
|
2015-10-25 12:59:39 +01:00
|
|
|
(*iter)->HasMacOSXRpathInstallNameDir("");
|
2016-05-16 10:34:04 -04:00
|
|
|
}
|
2013-12-18 21:25:29 -07:00
|
|
|
}
|
2014-03-11 17:37:26 +01:00
|
|
|
|
|
|
|
void cmLocalXCodeGenerator::ComputeObjectFilenames(
|
2016-05-16 10:34:04 -04:00
|
|
|
std::map<cmSourceFile const*, std::string>& mapping,
|
|
|
|
cmGeneratorTarget const*)
|
2014-03-11 17:37:26 +01:00
|
|
|
{
|
|
|
|
// Count the number of object files with each name. Warn about duplicate
|
|
|
|
// names since Xcode names them uniquely automatically with a numeric suffix
|
|
|
|
// to avoid exact duplicate file names. Note that Mac file names are not
|
|
|
|
// typically case sensitive, hence the LowerCase.
|
|
|
|
std::map<std::string, int> counts;
|
2016-05-16 10:34:04 -04:00
|
|
|
for (std::map<cmSourceFile const*, std::string>::iterator si =
|
|
|
|
mapping.begin();
|
|
|
|
si != mapping.end(); ++si) {
|
2014-03-11 17:37:26 +01:00
|
|
|
cmSourceFile const* sf = si->first;
|
|
|
|
std::string objectName =
|
|
|
|
cmSystemTools::GetFilenameWithoutLastExtension(sf->GetFullPath());
|
|
|
|
objectName += ".o";
|
|
|
|
|
|
|
|
std::string objectNameLower = cmSystemTools::LowerCase(objectName);
|
|
|
|
counts[objectNameLower] += 1;
|
2016-05-16 10:34:04 -04:00
|
|
|
if (2 == counts[objectNameLower]) {
|
2014-03-11 17:37:26 +01:00
|
|
|
// TODO: emit warning about duplicate name?
|
|
|
|
}
|
2016-05-16 10:34:04 -04:00
|
|
|
si->second = objectName;
|
|
|
|
}
|
2014-03-11 17:37:26 +01:00
|
|
|
}
|