cmake/Source/cmGlobalXCodeGenerator.cxx

5163 lines
184 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 "cmGlobalXCodeGenerator.h"
2016-07-09 11:21:54 +02:00
2020-08-30 11:54:41 +02:00
#include <algorithm>
2020-02-01 23:06:01 +01:00
#include <cassert>
#include <cstdio>
#include <cstring>
2022-03-29 21:10:50 +02:00
#include <functional>
2017-04-14 19:02:05 +02:00
#include <iomanip>
#include <sstream>
2021-09-14 00:13:48 +02:00
#include <unordered_set>
2020-08-30 11:54:41 +02:00
#include <utility>
2020-02-01 23:06:01 +01:00
#include <cm/memory>
2023-05-23 16:38:00 +02:00
#include <cm/optional>
2020-08-30 11:54:41 +02:00
#include <cmext/algorithm>
#include <cmext/string_view>
2020-02-01 23:06:01 +01:00
#include "cmsys/RegularExpression.hxx"
2017-04-14 19:02:05 +02:00
#include "cmComputeLinkInformation.h"
2021-09-14 00:13:48 +02:00
#include "cmCryptoHash.h"
2019-11-11 23:01:05 +01:00
#include "cmCustomCommand.h"
2011-01-16 11:35:12 +01:00
#include "cmCustomCommandGenerator.h"
2020-02-01 23:06:01 +01:00
#include "cmCustomCommandLines.h"
2022-03-29 21:10:50 +02:00
#include "cmCustomCommandTypes.h"
2016-07-09 11:21:54 +02:00
#include "cmGeneratedFileStream.h"
2017-04-14 19:02:05 +02:00
#include "cmGeneratorExpression.h"
2012-04-19 19:04:21 +03:00
#include "cmGeneratorTarget.h"
2013-03-16 19:13:01 +02:00
#include "cmGlobalGeneratorFactory.h"
2022-03-29 21:10:50 +02:00
#include "cmLinkItem.h"
2023-07-02 19:51:09 +02:00
#include "cmList.h"
2022-03-29 21:10:50 +02:00
#include "cmListFileCache.h"
2017-04-14 19:02:05 +02:00
#include "cmLocalGenerator.h"
2016-07-09 11:21:54 +02:00
#include "cmLocalXCodeGenerator.h"
#include "cmMakefile.h"
2019-11-11 23:01:05 +01:00
#include "cmMessageType.h"
2017-04-14 19:02:05 +02:00
#include "cmOutputConverter.h"
2022-03-29 21:10:50 +02:00
#include "cmPolicies.h"
2016-07-09 11:21:54 +02:00
#include "cmSourceFile.h"
2022-03-29 21:10:50 +02:00
#include "cmSourceFileLocation.h"
#include "cmSourceFileLocationKind.h"
2017-04-14 19:02:05 +02:00
#include "cmSourceGroup.h"
#include "cmState.h"
2022-03-29 21:10:50 +02:00
#include "cmStateSnapshot.h"
2017-04-14 19:02:05 +02:00
#include "cmStateTypes.h"
2020-08-30 11:54:41 +02:00
#include "cmStringAlgorithms.h"
2017-04-14 19:02:05 +02:00
#include "cmSystemTools.h"
#include "cmTarget.h"
2022-03-29 21:10:50 +02:00
#include "cmTargetDepend.h"
2016-07-09 11:21:54 +02:00
#include "cmXCode21Object.h"
#include "cmXCodeObject.h"
2017-07-20 19:35:53 +02:00
#include "cmXCodeScheme.h"
2022-03-29 21:10:50 +02:00
#include "cmXMLWriter.h"
2016-07-09 11:21:54 +02:00
#include "cmake.h"
2020-02-01 23:06:01 +01:00
#if !defined(CMAKE_BOOTSTRAP) && defined(__APPLE__)
2021-09-14 00:13:48 +02:00
# include <CoreFoundation/CoreFoundation.h>
# if !TARGET_OS_IPHONE
# define HAVE_APPLICATION_SERVICES
# include <ApplicationServices/ApplicationServices.h>
# endif
2018-04-23 21:13:27 +02:00
#endif
2020-02-01 23:06:01 +01:00
#if !defined(CMAKE_BOOTSTRAP)
2018-08-09 18:06:22 +02:00
# include "cmXMLParser.h"
// parse the xml file storing the installed version of Xcode on
// the machine
class cmXcodeVersionParser : public cmXMLParser
{
public:
2016-07-09 11:21:54 +02:00
cmXcodeVersionParser()
: Version("1.5")
{
}
2018-01-26 17:06:56 +01:00
void StartElement(const std::string&, const char**) override
{
this->Data = "";
}
void EndElement(const std::string& name) override
2016-07-09 11:21:54 +02:00
{
if (name == "key") {
this->Key = this->Data;
} else if (name == "string") {
if (this->Key == "CFBundleShortVersionString") {
this->Version = this->Data;
}
}
2016-07-09 11:21:54 +02:00
}
2018-01-26 17:06:56 +01:00
void CharacterDataHandler(const char* data, int length) override
2016-07-09 11:21:54 +02:00
{
this->Data.append(data, length);
}
2009-10-04 10:30:41 +03:00
std::string Version;
std::string Key;
std::string Data;
};
#endif
2009-10-04 10:30:41 +03:00
// Builds either an object list or a space-separated string from the
// given inputs.
class cmGlobalXCodeGenerator::BuildObjectListOrString
{
2016-07-09 11:21:54 +02:00
cmGlobalXCodeGenerator* Generator;
cmXCodeObject* Group;
2009-10-04 10:30:41 +03:00
bool Empty;
std::string String;
public:
2016-07-09 11:21:54 +02:00
BuildObjectListOrString(cmGlobalXCodeGenerator* gen, bool buildObjectList)
: Generator(gen)
2018-01-26 17:06:56 +01:00
, Group(nullptr)
2016-07-09 11:21:54 +02:00
, Empty(true)
{
if (buildObjectList) {
2009-10-04 10:30:41 +03:00
this->Group = this->Generator->CreateObject(cmXCodeObject::OBJECT_LIST);
}
2016-07-09 11:21:54 +02:00
}
2009-10-04 10:30:41 +03:00
bool IsEmpty() const { return this->Empty; }
2016-07-09 11:21:54 +02:00
void Add(const std::string& newString)
{
2009-10-04 10:30:41 +03:00
this->Empty = false;
2016-07-09 11:21:54 +02:00
if (this->Group) {
2009-10-04 10:30:41 +03:00
this->Group->AddObject(this->Generator->CreateString(newString));
2016-07-09 11:21:54 +02:00
} else {
2009-10-04 10:30:41 +03:00
this->String += newString;
this->String += ' ';
}
2016-07-09 11:21:54 +02:00
}
2009-10-04 10:30:41 +03:00
2016-07-09 11:21:54 +02:00
const std::string& GetString() const { return this->String; }
2009-10-04 10:30:41 +03:00
2016-07-09 11:21:54 +02:00
cmXCodeObject* CreateList()
{
if (this->Group) {
2009-10-04 10:30:41 +03:00
return this->Group;
}
2018-01-26 17:06:56 +01:00
return this->Generator->CreateString(this->String);
2016-07-09 11:21:54 +02:00
}
2009-10-04 10:30:41 +03:00
};
2013-03-16 19:13:01 +02:00
class cmGlobalXCodeGenerator::Factory : public cmGlobalGeneratorFactory
{
public:
2020-08-30 11:54:41 +02:00
std::unique_ptr<cmGlobalGenerator> CreateGlobalGenerator(
2021-09-14 00:13:48 +02:00
const std::string& name, bool allowArch, cmake* cm) const override;
2013-03-16 19:13:01 +02:00
2023-05-23 16:38:00 +02:00
cmDocumentationEntry GetDocumentation() const override
2016-07-09 11:21:54 +02:00
{
2023-05-23 16:38:00 +02:00
return cmGlobalXCodeGenerator::GetDocumentation();
2016-07-09 11:21:54 +02:00
}
2013-03-16 19:13:01 +02:00
2019-11-11 23:01:05 +01:00
std::vector<std::string> GetGeneratorNames() const override
2016-07-09 11:21:54 +02:00
{
2019-11-11 23:01:05 +01:00
std::vector<std::string> names;
2016-07-09 11:21:54 +02:00
names.push_back(cmGlobalXCodeGenerator::GetActualName());
2019-11-11 23:01:05 +01:00
return names;
}
std::vector<std::string> GetGeneratorNamesWithPlatform() const override
{
return std::vector<std::string>();
2016-07-09 11:21:54 +02:00
}
2016-03-13 13:35:51 +01:00
2018-01-26 17:06:56 +01:00
bool SupportsToolset() const override { return true; }
bool SupportsPlatform() const override { return false; }
2019-11-11 23:01:05 +01:00
std::vector<std::string> GetKnownPlatforms() const override
{
return std::vector<std::string>();
}
std::string GetDefaultPlatformName() const override { return std::string(); }
2013-03-16 19:13:01 +02:00
};
2017-07-20 19:35:53 +02:00
cmGlobalXCodeGenerator::cmGlobalXCodeGenerator(
cmake* cm, std::string const& version_string, unsigned int version_number)
2015-08-17 11:37:30 +02:00
: cmGlobalGenerator(cm)
{
2017-07-20 19:35:53 +02:00
this->VersionString = version_string;
this->XcodeVersion = version_number;
2021-09-14 00:13:48 +02:00
if (this->XcodeVersion >= 120) {
this->XcodeBuildSystem = BuildSystem::Twelve;
} else {
this->XcodeBuildSystem = BuildSystem::One;
}
2009-10-04 10:30:41 +03:00
2018-01-26 17:06:56 +01:00
this->RootObject = nullptr;
this->MainGroupChildren = nullptr;
2021-09-14 00:13:48 +02:00
this->FrameworkGroup = nullptr;
2018-01-26 17:06:56 +01:00
this->CurrentMakefile = nullptr;
this->CurrentLocalGenerator = nullptr;
2015-04-27 22:25:09 +02:00
this->XcodeBuildCommandInitialized = false;
2017-07-20 19:35:53 +02:00
this->ObjectDirArchDefault = "$(CURRENT_ARCH)";
this->ObjectDirArch = this->ObjectDirArchDefault;
cm->GetState()->SetIsGeneratorMultiConfig(true);
}
2020-08-30 11:54:41 +02:00
std::unique_ptr<cmGlobalGeneratorFactory> cmGlobalXCodeGenerator::NewFactory()
2010-11-13 01:00:53 +02:00
{
2020-08-30 11:54:41 +02:00
return std::unique_ptr<cmGlobalGeneratorFactory>(new Factory);
2013-03-16 19:13:01 +02:00
}
2020-08-30 11:54:41 +02:00
std::unique_ptr<cmGlobalGenerator>
cmGlobalXCodeGenerator::Factory::CreateGlobalGenerator(const std::string& name,
2021-09-14 00:13:48 +02:00
bool /*allowArch*/,
2020-08-30 11:54:41 +02:00
cmake* cm) const
2013-03-16 19:13:01 +02:00
{
2018-01-26 17:06:56 +01:00
if (name != GetActualName()) {
2020-08-30 11:54:41 +02:00
return std::unique_ptr<cmGlobalGenerator>();
2018-01-26 17:06:56 +01:00
}
2020-02-01 23:06:01 +01:00
#if !defined(CMAKE_BOOTSTRAP)
cmXcodeVersionParser parser;
2013-03-16 19:13:01 +02:00
std::string versionFile;
{
2016-07-09 11:21:54 +02:00
std::string out;
2019-11-11 23:01:05 +01:00
bool commandResult = cmSystemTools::RunSingleCommand(
"xcode-select --print-path", &out, nullptr, nullptr, nullptr,
cmSystemTools::OUTPUT_NONE);
if (commandResult) {
std::string::size_type pos = out.find(".app/");
if (pos != std::string::npos) {
versionFile = out.substr(0, pos + 5) + "Contents/version.plist";
}
2013-03-16 19:13:01 +02:00
}
}
2019-11-11 23:01:05 +01:00
if (!versionFile.empty() && cmSystemTools::FileExists(versionFile)) {
2013-03-16 19:13:01 +02:00
parser.ParseFile(versionFile.c_str());
2016-07-09 11:21:54 +02:00
} else if (cmSystemTools::FileExists(
"/Applications/Xcode.app/Contents/version.plist")) {
parser.ParseFile("/Applications/Xcode.app/Contents/version.plist");
} else {
parser.ParseFile(
"/Developer/Applications/Xcode.app/Contents/version.plist");
}
2017-07-20 19:35:53 +02:00
std::string const& version_string = parser.Version;
// Compute an integer form of the version number.
unsigned int v[2] = { 0, 0 };
sscanf(version_string.c_str(), "%u.%u", &v[0], &v[1]);
unsigned int version_number = 10 * v[0] + v[1];
2019-11-11 23:01:05 +01:00
if (version_number < 50) {
cm->IssueMessage(MessageType::FATAL_ERROR,
2017-07-20 19:35:53 +02:00
"Xcode " + version_string + " not supported.");
2020-08-30 11:54:41 +02:00
return std::unique_ptr<cmGlobalGenerator>();
2016-07-09 11:21:54 +02:00
}
2017-07-20 19:35:53 +02:00
2020-08-30 11:54:41 +02:00
return std::unique_ptr<cmGlobalGenerator>(
cm::make_unique<cmGlobalXCodeGenerator>(cm, version_string,
version_number));
#else
2011-06-19 15:41:06 +03:00
std::cerr << "CMake should be built with cmake to use Xcode, "
2016-07-09 11:21:54 +02:00
"default to Xcode 1.5\n";
2020-08-30 11:54:41 +02:00
return std::unique_ptr<cmGlobalGenerator>(
cm::make_unique<cmGlobalXCodeGenerator>(cm));
#endif
}
2017-04-14 19:02:05 +02:00
bool cmGlobalXCodeGenerator::FindMakeProgram(cmMakefile* mf)
2015-04-27 22:25:09 +02:00
{
// The Xcode generator knows how to lookup its build tool
// directly instead of needing a helper module to do it, so we
// do not actually need to put CMAKE_MAKE_PROGRAM into the cache.
2020-02-01 23:06:01 +01:00
if (cmIsOff(mf->GetDefinition("CMAKE_MAKE_PROGRAM"))) {
mf->AddDefinition("CMAKE_MAKE_PROGRAM", this->GetXcodeBuildCommand());
2016-07-09 11:21:54 +02:00
}
2017-04-14 19:02:05 +02:00
return true;
2015-04-27 22:25:09 +02:00
}
std::string const& cmGlobalXCodeGenerator::GetXcodeBuildCommand()
{
2016-07-09 11:21:54 +02:00
if (!this->XcodeBuildCommandInitialized) {
2015-04-27 22:25:09 +02:00
this->XcodeBuildCommandInitialized = true;
this->XcodeBuildCommand = this->FindXcodeBuildCommand();
2016-07-09 11:21:54 +02:00
}
2015-04-27 22:25:09 +02:00
return this->XcodeBuildCommand;
}
std::string cmGlobalXCodeGenerator::FindXcodeBuildCommand()
{
2019-11-11 23:01:05 +01:00
std::string makeProgram = cmSystemTools::FindProgram("xcodebuild");
if (makeProgram.empty()) {
makeProgram = "xcodebuild";
2016-07-09 11:21:54 +02:00
}
2019-11-11 23:01:05 +01:00
return makeProgram;
2015-04-27 22:25:09 +02:00
}
2020-08-30 11:54:41 +02:00
bool cmGlobalXCodeGenerator::SetSystemName(std::string const& s,
cmMakefile* mf)
{
this->SystemName = s;
return this->cmGlobalGenerator::SetSystemName(s, mf);
}
2021-09-14 00:13:48 +02:00
namespace {
cm::string_view cmXcodeBuildSystemString(cmGlobalXCodeGenerator::BuildSystem b)
{
switch (b) {
case cmGlobalXCodeGenerator::BuildSystem::One:
return "1"_s;
case cmGlobalXCodeGenerator::BuildSystem::Twelve:
return "12"_s;
}
return {};
}
}
2015-04-27 22:25:09 +02:00
bool cmGlobalXCodeGenerator::SetGeneratorToolset(std::string const& ts,
2020-08-30 11:54:41 +02:00
bool build, cmMakefile* mf)
2013-03-16 19:13:01 +02:00
{
2021-09-14 00:13:48 +02:00
if (!this->ParseGeneratorToolset(ts, mf)) {
2017-07-20 19:35:53 +02:00
return false;
}
2020-08-30 11:54:41 +02:00
if (build) {
return true;
}
2017-07-20 19:35:53 +02:00
if (!this->GeneratorToolset.empty()) {
2020-02-01 23:06:01 +01:00
mf->AddDefinition("CMAKE_XCODE_PLATFORM_TOOLSET", this->GeneratorToolset);
2016-07-09 11:21:54 +02:00
}
2021-09-14 00:13:48 +02:00
mf->AddDefinition("CMAKE_XCODE_BUILD_SYSTEM",
cmXcodeBuildSystemString(this->XcodeBuildSystem));
return true;
}
bool cmGlobalXCodeGenerator::ParseGeneratorToolset(std::string const& ts,
cmMakefile* mf)
{
std::vector<std::string> const fields = cmTokenize(ts, ",");
auto fi = fields.cbegin();
if (fi == fields.cend()) {
return true;
}
// The first field may be the Xcode GCC_VERSION.
if (fi->find('=') == fi->npos) {
this->GeneratorToolset = *fi;
++fi;
}
std::unordered_set<std::string> handled;
// The rest of the fields must be key=value pairs.
for (; fi != fields.cend(); ++fi) {
std::string::size_type pos = fi->find('=');
if (pos == fi->npos) {
/* clang-format off */
std::string const& e = cmStrCat(
"Generator\n"
" ", this->GetName(), "\n"
"given toolset specification\n"
" ", ts, "\n"
"that contains a field after the first ',' with no '='."
);
/* clang-format on */
mf->IssueMessage(MessageType::FATAL_ERROR, e);
return false;
}
std::string const key = fi->substr(0, pos);
std::string const value = fi->substr(pos + 1);
if (!handled.insert(key).second) {
/* clang-format off */
std::string const& e = cmStrCat(
"Generator\n"
" ", this->GetName(), "\n"
"given toolset specification\n"
" ", ts, "\n"
"that contains duplicate field key '", key, "'."
);
/* clang-format on */
mf->IssueMessage(MessageType::FATAL_ERROR, e);
return false;
}
if (!this->ProcessGeneratorToolsetField(key, value, mf)) {
return false;
}
}
2017-07-20 19:35:53 +02:00
return true;
2013-03-16 19:13:01 +02:00
}
2021-09-14 00:13:48 +02:00
bool cmGlobalXCodeGenerator::ProcessGeneratorToolsetField(
std::string const& key, std::string const& value, cmMakefile* mf)
{
if (key == "buildsystem") {
if (value == "1"_s) {
this->XcodeBuildSystem = BuildSystem::One;
} else if (value == "12"_s) {
this->XcodeBuildSystem = BuildSystem::Twelve;
} else {
/* clang-format off */
std::string const& e = cmStrCat(
"Generator\n"
" ", this->GetName(), "\n"
"toolset specification field\n"
" buildsystem=", value, "\n"
"value is unknown. It must be '1' or '12'."
);
/* clang-format on */
mf->IssueMessage(MessageType::FATAL_ERROR, e);
return false;
}
if (this->XcodeBuildSystem == BuildSystem::Twelve &&
this->XcodeVersion < 120) {
/* clang-format off */
std::string const& e = cmStrCat(
"Generator\n"
" ", this->GetName(), "\n"
"toolset specification field\n"
" buildsystem=", value, "\n"
"is not allowed with Xcode ", this->VersionString, '.'
);
/* clang-format on */
mf->IssueMessage(MessageType::FATAL_ERROR, e);
return false;
}
return true;
}
/* clang-format off */
std::string const& e = cmStrCat(
"Generator\n"
" ", this->GetName(), "\n"
"given toolset specification that contains invalid field '", key, "'."
);
/* clang-format on */
mf->IssueMessage(MessageType::FATAL_ERROR, e);
return false;
}
2016-07-09 11:21:54 +02:00
void cmGlobalXCodeGenerator::EnableLanguage(
std::vector<std::string> const& lang, cmMakefile* mf, bool optional)
2010-11-13 01:00:53 +02:00
{
2016-07-09 11:21:54 +02:00
mf->AddDefinition("XCODE", "1");
2020-02-01 23:06:01 +01:00
mf->AddDefinition("XCODE_VERSION", this->VersionString);
2021-11-20 13:41:27 +01:00
mf->InitCMAKE_CONFIGURATION_TYPES("Debug;Release;MinSizeRel;RelWithDebInfo");
mf->AddDefinition("CMAKE_GENERATOR_NO_COMPILER_ENV", "1");
this->cmGlobalGenerator::EnableLanguage(lang, mf, optional);
2017-07-20 19:35:53 +02:00
this->ComputeArchitectures(mf);
}
2018-04-23 21:13:27 +02:00
bool cmGlobalXCodeGenerator::Open(const std::string& bindir,
const std::string& projectName, bool dryRun)
{
bool ret = false;
#ifdef HAVE_APPLICATION_SERVICES
std::string url = bindir + "/" + projectName + ".xcodeproj";
if (dryRun) {
return cmSystemTools::FileExists(url, false);
}
CFStringRef cfStr = CFStringCreateWithCString(
kCFAllocatorDefault, url.c_str(), kCFStringEncodingUTF8);
if (cfStr) {
CFURLRef cfUrl = CFURLCreateWithFileSystemPath(kCFAllocatorDefault, cfStr,
kCFURLPOSIXPathStyle, true);
if (cfUrl) {
OSStatus err = LSOpenCFURLRef(cfUrl, nullptr);
ret = err == noErr;
CFRelease(cfUrl);
}
CFRelease(cfStr);
}
2022-11-16 20:14:03 +01:00
#else
(void)bindir;
(void)projectName;
(void)dryRun;
2018-04-23 21:13:27 +02:00
#endif
return ret;
}
2019-11-11 23:01:05 +01:00
std::vector<cmGlobalGenerator::GeneratedMakeCommand>
cmGlobalXCodeGenerator::GenerateBuildCommand(
const std::string& makeProgram, const std::string& projectName,
const std::string& /*projectDir*/,
std::vector<std::string> const& targetNames, const std::string& config,
2022-03-29 21:10:50 +02:00
int jobs, bool /*verbose*/, const cmBuildOptions& /*buildOptions*/,
2019-11-11 23:01:05 +01:00
std::vector<std::string> const& makeOptions)
2014-08-03 19:52:23 +02:00
{
2019-11-11 23:01:05 +01:00
GeneratedMakeCommand makeCommand;
// now build the test
2019-11-11 23:01:05 +01:00
makeCommand.Add(
2016-07-09 11:21:54 +02:00
this->SelectMakeProgram(makeProgram, this->GetXcodeBuildCommand()));
2019-11-11 23:01:05 +01:00
if (!projectName.empty()) {
makeCommand.Add("-project");
2020-02-01 23:06:01 +01:00
std::string projectArg = cmStrCat(projectName, ".xcodeproj");
2019-11-11 23:01:05 +01:00
makeCommand.Add(projectArg);
}
2020-08-30 11:54:41 +02:00
if (cm::contains(targetNames, "clean")) {
2019-11-11 23:01:05 +01:00
makeCommand.Add("clean");
makeCommand.Add("-target", "ALL_BUILD");
2016-07-09 11:21:54 +02:00
} else {
2019-11-11 23:01:05 +01:00
makeCommand.Add("build");
if (targetNames.empty() ||
((targetNames.size() == 1) && targetNames.front().empty())) {
makeCommand.Add("-target", "ALL_BUILD");
} else {
for (const auto& tname : targetNames) {
if (!tname.empty()) {
makeCommand.Add("-target", tname);
}
}
}
2016-07-09 11:21:54 +02:00
}
2019-11-11 23:01:05 +01:00
2021-09-14 00:13:48 +02:00
if ((this->XcodeBuildSystem >= BuildSystem::Twelve) ||
(jobs != cmake::NO_BUILD_PARALLEL_LEVEL)) {
makeCommand.Add("-parallelizeTargets");
}
2019-11-11 23:01:05 +01:00
makeCommand.Add("-configuration", (config.empty() ? "Debug" : config));
2018-08-09 18:06:22 +02:00
2021-09-14 00:13:48 +02:00
if ((jobs != cmake::NO_BUILD_PARALLEL_LEVEL) &&
(jobs != cmake::DEFAULT_BUILD_PARALLEL_LEVEL)) {
makeCommand.Add("-jobs", std::to_string(jobs));
2018-08-09 18:06:22 +02:00
}
2019-11-11 23:01:05 +01:00
if (this->XcodeVersion >= 70) {
makeCommand.Add("-hideShellScriptEnvironment");
}
makeCommand.Add(makeOptions.begin(), makeOptions.end());
return { std::move(makeCommand) };
}
2019-11-11 23:01:05 +01:00
//! Create a local generator appropriate to this Global Generator
2020-08-30 11:54:41 +02:00
std::unique_ptr<cmLocalGenerator> cmGlobalXCodeGenerator::CreateLocalGenerator(
cmMakefile* mf)
{
2021-09-14 00:13:48 +02:00
std::unique_ptr<cmLocalGenerator> lg(
2020-08-30 11:54:41 +02:00
cm::make_unique<cmLocalXCodeGenerator>(this, mf));
2021-09-14 00:13:48 +02:00
if (this->XcodeBuildSystem >= BuildSystem::Twelve) {
// For this build system variant we generate custom commands as
// shell scripts directly rather than inside Makefiles.
// FIXME: Rename or refactor this option for clarity.
lg->SetLinkScriptShell(true);
}
return lg;
}
2016-03-13 13:35:51 +01:00
void cmGlobalXCodeGenerator::AddExtraIDETargets()
{
// make sure extra targets are added before calling
// the parent generate which will call trace depends
2018-04-23 21:13:27 +02:00
for (auto keyVal : this->ProjectMap) {
cmLocalGenerator* root = keyVal.second[0];
this->SetGenerationRoot(root);
// add ALL_BUILD, INSTALL, etc
2018-04-23 21:13:27 +02:00
this->AddExtraTargets(root, keyVal.second);
2016-07-09 11:21:54 +02:00
}
2015-11-17 17:22:37 +01:00
}
void cmGlobalXCodeGenerator::Generate()
{
this->cmGlobalGenerator::Generate();
2022-08-04 22:12:04 +02:00
if (cmSystemTools::GetErrorOccurredFlag()) {
2012-04-19 19:04:21 +03:00
return;
2016-07-09 11:21:54 +02:00
}
2018-10-28 12:09:07 +01:00
2018-04-23 21:13:27 +02:00
for (auto keyVal : this->ProjectMap) {
cmLocalGenerator* root = keyVal.second[0];
bool generateTopLevelProjectOnly =
root->GetMakefile()->IsOn("CMAKE_XCODE_GENERATE_TOP_LEVEL_PROJECT_ONLY");
if (generateTopLevelProjectOnly) {
cmStateSnapshot snp = root->GetStateSnapshot();
if (snp.GetBuildsystemDirectoryParent().IsValid()) {
continue;
}
}
2021-09-14 00:13:48 +02:00
// cache the enabled languages for source file type queries
this->GetEnabledLanguages(this->EnabledLangs);
this->SetGenerationRoot(root);
// now create the project
2018-04-23 21:13:27 +02:00
this->OutputXCodeProject(root, keyVal.second);
2016-07-09 11:21:54 +02:00
}
}
void cmGlobalXCodeGenerator::SetGenerationRoot(cmLocalGenerator* root)
{
2016-03-13 13:35:51 +01:00
this->CurrentProject = root->GetProjectName();
this->SetCurrentLocalGenerator(root);
2021-09-14 00:13:48 +02:00
this->CurrentRootGenerator = root;
2020-02-01 23:06:01 +01:00
this->CurrentXCodeHackMakefile =
cmStrCat(root->GetCurrentBinaryDirectory(), "/CMakeScripts");
2019-11-11 23:01:05 +01:00
cmSystemTools::MakeDirectory(this->CurrentXCodeHackMakefile);
this->CurrentXCodeHackMakefile += "/XCODE_DEPEND_HELPER.make";
}
2016-07-09 11:21:54 +02:00
std::string cmGlobalXCodeGenerator::PostBuildMakeTarget(
std::string const& tName, std::string const& configName)
2011-06-19 15:41:06 +03:00
{
2012-02-18 12:40:36 +02:00
std::string target = tName;
2016-07-09 11:21:54 +02:00
std::replace(target.begin(), target.end(), ' ', '_');
2020-02-01 23:06:01 +01:00
std::string out = cmStrCat("PostBuild.", target, '.', configName);
2011-06-19 15:41:06 +03:00
return out;
}
2012-02-18 12:40:36 +02:00
#define CMAKE_CHECK_BUILD_SYSTEM_TARGET "ZERO_CHECK"
2016-07-09 11:21:54 +02:00
void cmGlobalXCodeGenerator::AddExtraTargets(
cmLocalGenerator* root, std::vector<cmLocalGenerator*>& gens)
{
2020-02-01 23:06:01 +01:00
// Add ALL_BUILD
2022-03-29 21:10:50 +02:00
auto cc = cm::make_unique<cmCustomCommand>();
cc->SetCommandLines(
cmMakeSingleCommandLine({ "echo", "Build all projects" }));
cmTarget* allbuild =
root->AddUtilityCommand("ALL_BUILD", true, std::move(cc));
2015-11-17 17:22:37 +01:00
2022-08-04 22:12:04 +02:00
// Add xcconfig files to ALL_BUILD sources
for (auto& config : this->CurrentConfigurationTypes) {
auto xcconfig = cmGeneratorExpression::Evaluate(
this->CurrentMakefile->GetSafeDefinition("CMAKE_XCODE_XCCONFIG"),
this->CurrentLocalGenerator, config);
if (!xcconfig.empty()) {
allbuild->AddSource(xcconfig);
}
}
2020-08-30 11:54:41 +02:00
root->AddGeneratorTarget(cm::make_unique<cmGeneratorTarget>(allbuild, root));
2010-11-13 01:00:53 +02:00
// Add XCODE depend helper
2021-09-14 00:13:48 +02:00
std::string legacyDependHelperDir = root->GetCurrentBinaryDirectory();
cmCustomCommandLines legacyDependHelperCommandLines;
if (this->XcodeBuildSystem == BuildSystem::One) {
legacyDependHelperCommandLines = cmMakeSingleCommandLine(
{ "make", "-C", legacyDependHelperDir, "-f",
this->CurrentXCodeHackMakefile, "OBJDIR=$(OBJDIR)",
/* placeholder, see below */ "" });
}
2011-06-19 15:41:06 +03:00
2012-02-18 12:40:36 +02:00
// Add ZERO_CHECK
2018-08-09 18:06:22 +02:00
bool regenerate = !this->GlobalSettingIsOn("CMAKE_SUPPRESS_REGENERATION");
2018-04-23 21:13:27 +02:00
bool generateTopLevelProjectOnly =
2020-08-30 11:54:41 +02:00
root->GetMakefile()->IsOn("CMAKE_XCODE_GENERATE_TOP_LEVEL_PROJECT_ONLY");
2018-04-23 21:13:27 +02:00
bool isTopLevel =
!root->GetStateSnapshot().GetBuildsystemDirectoryParent().IsValid();
2020-08-30 11:54:41 +02:00
bool isGenerateProject = isTopLevel || !generateTopLevelProjectOnly;
if (regenerate && isGenerateProject) {
2012-02-18 12:40:36 +02:00
this->CreateReRunCMakeFile(root, gens);
2016-07-09 11:21:54 +02:00
std::string file =
2018-08-09 18:06:22 +02:00
this->ConvertToRelativeForMake(this->CurrentReRunCMakeMakefile);
2012-02-18 12:40:36 +02:00
cmSystemTools::ReplaceString(file, "\\ ", " ");
2022-03-29 21:10:50 +02:00
cc = cm::make_unique<cmCustomCommand>();
cc->SetCommandLines(cmMakeSingleCommandLine({ "make", "-f", file }));
cmTarget* check = root->AddUtilityCommand(CMAKE_CHECK_BUILD_SYSTEM_TARGET,
true, std::move(cc));
2015-11-17 17:22:37 +01:00
2020-08-30 11:54:41 +02:00
root->AddGeneratorTarget(cm::make_unique<cmGeneratorTarget>(check, root));
2016-07-09 11:21:54 +02:00
}
// now make the allbuild depend on all the non-utility targets
// in the project
2018-01-26 17:06:56 +01:00
for (auto& gen : gens) {
2020-08-30 11:54:41 +02:00
for (const auto& target : gen->GetGeneratorTargets()) {
2017-04-14 19:02:05 +02:00
if (target->GetType() == cmStateEnums::GLOBAL_TARGET) {
2015-11-17 17:22:37 +01:00
continue;
2016-07-09 11:21:54 +02:00
}
2015-11-17 17:22:37 +01:00
2020-02-01 23:06:01 +01:00
if (regenerate &&
(target->GetName() != CMAKE_CHECK_BUILD_SYSTEM_TARGET)) {
2020-08-30 11:54:41 +02:00
target->Target->AddUtility(CMAKE_CHECK_BUILD_SYSTEM_TARGET, false);
2016-07-09 11:21:54 +02:00
}
2012-02-18 12:40:36 +02:00
2010-11-13 01:00:53 +02:00
// make all exe, shared libs and modules
// run the depend check makefile as a post build rule
// this will make sure that when the next target is built
// things are up-to-date
2021-09-14 00:13:48 +02:00
if (this->XcodeBuildSystem == BuildSystem::One && isGenerateProject &&
2020-08-30 11:54:41 +02:00
target->GetType() == cmStateEnums::OBJECT_LIBRARY) {
2021-09-14 00:13:48 +02:00
legacyDependHelperCommandLines.front().back() = // fill placeholder
2016-03-13 13:35:51 +01:00
this->PostBuildMakeTarget(target->GetName(), "$(CONFIGURATION)");
2022-03-29 21:10:50 +02:00
cc = cm::make_unique<cmCustomCommand>();
cc->SetCommandLines(legacyDependHelperCommandLines);
cc->SetComment("Depend check for xcode");
cc->SetWorkingDirectory(legacyDependHelperDir.c_str());
2020-08-30 11:54:41 +02:00
gen->AddCustomCommandToTarget(
2022-03-29 21:10:50 +02:00
target->GetName(), cmCustomCommandType::POST_BUILD, std::move(cc),
2020-02-01 23:06:01 +01:00
cmObjectLibraryCommands::Accept);
2016-07-09 11:21:54 +02:00
}
2012-02-18 12:40:36 +02:00
2020-08-30 11:54:41 +02:00
if (!this->IsExcluded(gens[0], target.get())) {
allbuild->AddUtility(target->GetName(), false);
2016-07-09 11:21:54 +02:00
}
}
2016-07-09 11:21:54 +02:00
}
}
2011-02-07 16:37:25 +01:00
void cmGlobalXCodeGenerator::CreateReRunCMakeFile(
cmLocalGenerator* root, std::vector<cmLocalGenerator*> const& gens)
{
2011-02-07 16:37:25 +01:00
std::vector<std::string> lfiles;
2018-01-26 17:06:56 +01:00
for (auto gen : gens) {
2020-08-30 11:54:41 +02:00
cm::append(lfiles, gen->GetMakefile()->GetListFiles());
2016-07-09 11:21:54 +02:00
}
2011-02-07 16:37:25 +01:00
// sort the array
2020-02-01 23:06:01 +01:00
std::sort(lfiles.begin(), lfiles.end());
lfiles.erase(std::unique(lfiles.begin(), lfiles.end()), lfiles.end());
2018-08-09 18:06:22 +02:00
cmake* cm = this->GetCMakeInstance();
if (cm->DoWriteGlobVerifyTarget()) {
lfiles.emplace_back(cm->GetGlobVerifyStamp());
}
2020-02-01 23:06:01 +01:00
this->CurrentReRunCMakeMakefile =
cmStrCat(root->GetCurrentBinaryDirectory(), "/CMakeScripts");
2019-11-11 23:01:05 +01:00
cmSystemTools::MakeDirectory(this->CurrentReRunCMakeMakefile);
this->CurrentReRunCMakeMakefile += "/ReRunCMake.make";
2019-11-11 23:01:05 +01:00
cmGeneratedFileStream makefileStream(this->CurrentReRunCMakeMakefile);
makefileStream.SetCopyIfDifferent(true);
2016-07-09 11:21:54 +02:00
makefileStream << "# Generated by CMake, DO NOT EDIT\n\n";
2018-04-23 21:13:27 +02:00
makefileStream << "TARGETS:= \n";
2016-07-09 11:21:54 +02:00
makefileStream << "empty:= \n";
makefileStream << "space:= $(empty) $(empty)\n";
makefileStream << "spaceplus:= $(empty)\\ $(empty)\n\n";
2018-04-23 21:13:27 +02:00
for (const auto& lfile : lfiles) {
2016-07-09 11:21:54 +02:00
makefileStream << "TARGETS += $(subst $(space),$(spaceplus),$(wildcard "
2018-08-09 18:06:22 +02:00
<< this->ConvertToRelativeForMake(lfile) << "))\n";
2016-07-09 11:21:54 +02:00
}
2018-08-09 18:06:22 +02:00
makefileStream << "\n";
2016-07-09 11:21:54 +02:00
2020-02-01 23:06:01 +01:00
std::string checkCache =
cmStrCat(root->GetBinaryDirectory(), "/CMakeFiles/cmake.check_cache");
2018-08-09 18:06:22 +02:00
if (cm->DoWriteGlobVerifyTarget()) {
makefileStream << ".NOTPARALLEL:\n\n";
makefileStream << ".PHONY: all VERIFY_GLOBS\n\n";
makefileStream << "all: VERIFY_GLOBS "
<< this->ConvertToRelativeForMake(checkCache) << "\n\n";
makefileStream << "VERIFY_GLOBS:\n";
makefileStream << "\t"
<< this->ConvertToRelativeForMake(
cmSystemTools::GetCMakeCommand())
<< " -P "
<< this->ConvertToRelativeForMake(cm->GetGlobVerifyScript())
<< "\n\n";
}
makefileStream << this->ConvertToRelativeForMake(checkCache)
2016-07-09 11:21:54 +02:00
<< ": $(TARGETS)\n";
2023-07-02 19:51:09 +02:00
makefileStream
<< "\t" << this->ConvertToRelativeForMake(cmSystemTools::GetCMakeCommand())
<< " -S" << this->ConvertToRelativeForMake(root->GetSourceDirectory())
<< " -B" << this->ConvertToRelativeForMake(root->GetBinaryDirectory())
<< (cm->GetIgnoreWarningAsError() ? " --compile-no-warning-as-error" : "")
<< "\n";
2016-07-09 11:21:54 +02:00
}
2015-08-17 11:37:30 +02:00
2020-08-30 11:54:41 +02:00
static bool objectIdLessThan(const std::unique_ptr<cmXCodeObject>& l,
const std::unique_ptr<cmXCodeObject>& r)
2015-08-17 11:37:30 +02:00
{
return l->GetId() < r->GetId();
}
void cmGlobalXCodeGenerator::SortXCodeObjects()
{
std::sort(this->XCodeObjects.begin(), this->XCodeObjects.end(),
objectIdLessThan);
}
void cmGlobalXCodeGenerator::ClearXCodeObjects()
{
this->TargetDoneSet.clear();
this->XCodeObjects.clear();
2012-02-18 12:40:36 +02:00
this->XCodeObjectIDs.clear();
2015-04-27 22:25:09 +02:00
this->XCodeObjectMap.clear();
this->GroupMap.clear();
this->GroupNameMap.clear();
this->TargetGroup.clear();
this->FileRefs.clear();
2021-09-14 00:13:48 +02:00
this->ExternalLibRefs.clear();
this->EmbeddedLibRefs.clear();
this->FileRefToBuildFileMap.clear();
this->FileRefToEmbedBuildFileMap.clear();
this->CommandsVisited.clear();
}
2020-08-30 11:54:41 +02:00
void cmGlobalXCodeGenerator::addObject(std::unique_ptr<cmXCodeObject> obj)
2012-02-18 12:40:36 +02:00
{
2016-07-09 11:21:54 +02:00
if (obj->GetType() == cmXCodeObject::OBJECT) {
2018-01-26 17:06:56 +01:00
const std::string& id = obj->GetId();
2012-02-18 12:40:36 +02:00
// If this is a duplicate id, it's an error:
//
2016-07-09 11:21:54 +02:00
if (this->XCodeObjectIDs.count(id)) {
2012-02-18 12:40:36 +02:00
cmSystemTools::Error(
"Xcode generator: duplicate object ids not allowed");
2016-07-09 11:21:54 +02:00
}
2012-02-18 12:40:36 +02:00
this->XCodeObjectIDs.insert(id);
2016-07-09 11:21:54 +02:00
}
2012-02-18 12:40:36 +02:00
2020-08-30 11:54:41 +02:00
this->XCodeObjects.push_back(std::move(obj));
2012-02-18 12:40:36 +02:00
}
2016-07-09 11:21:54 +02:00
cmXCodeObject* cmGlobalXCodeGenerator::CreateObject(
2021-09-14 00:13:48 +02:00
cmXCodeObject::PBXType ptype, cm::string_view key)
{
2021-09-14 00:13:48 +02:00
auto obj = cm::make_unique<cmXCode21Object>(ptype, cmXCodeObject::OBJECT,
this->GetObjectId(ptype, key));
2020-08-30 11:54:41 +02:00
auto ptr = obj.get();
this->addObject(std::move(obj));
return ptr;
}
2016-07-09 11:21:54 +02:00
cmXCodeObject* cmGlobalXCodeGenerator::CreateObject(cmXCodeObject::Type type)
{
2021-09-14 00:13:48 +02:00
auto obj = cm::make_unique<cmXCodeObject>(
cmXCodeObject::None, type,
"Temporary cmake object, should not be referred to in Xcode file");
2020-08-30 11:54:41 +02:00
auto ptr = obj.get();
this->addObject(std::move(obj));
return ptr;
}
2016-07-09 11:21:54 +02:00
cmXCodeObject* cmGlobalXCodeGenerator::CreateString(const std::string& s)
{
cmXCodeObject* obj = this->CreateObject(cmXCodeObject::STRING);
obj->SetString(s);
return obj;
}
2016-07-09 11:21:54 +02:00
cmXCodeObject* cmGlobalXCodeGenerator::CreateObjectReference(
cmXCodeObject* ref)
{
cmXCodeObject* obj = this->CreateObject(cmXCodeObject::OBJECT_REF);
obj->SetObject(ref);
return obj;
}
2016-07-09 11:21:54 +02:00
cmXCodeObject* cmGlobalXCodeGenerator::CreateFlatClone(cmXCodeObject* orig)
2016-03-13 13:35:51 +01:00
{
cmXCodeObject* obj = this->CreateObject(orig->GetType());
obj->CopyAttributes(orig);
return obj;
}
2022-03-29 21:10:50 +02:00
static std::string GetGroupMapKeyFromPath(cmGeneratorTarget* target,
const std::string& fullpath)
{
2016-03-13 13:35:51 +01:00
std::string key(target->GetName());
key += "-";
2012-04-19 19:04:21 +03:00
key += fullpath;
return key;
}
2021-09-14 00:13:48 +02:00
cmXCodeObject* cmGlobalXCodeGenerator::CreateXCodeBuildFileFromPath(
2016-07-09 11:21:54 +02:00
const std::string& fullpath, cmGeneratorTarget* target,
const std::string& lang, cmSourceFile* sf)
2012-04-19 19:04:21 +03:00
{
// Using a map and the full path guarantees that we will always get the same
2021-09-14 00:13:48 +02:00
// fileRef object for any given full path. Same goes for the buildFile
// object.
2012-04-19 19:04:21 +03:00
cmXCodeObject* fileRef =
2016-03-13 13:35:51 +01:00
this->CreateXCodeFileReferenceFromPath(fullpath, target, lang, sf);
2021-09-14 00:13:48 +02:00
if (fileRef) {
auto it = this->FileRefToBuildFileMap.find(fileRef);
if (it == this->FileRefToBuildFileMap.end()) {
cmXCodeObject* buildFile =
this->CreateObject(cmXCodeObject::PBXBuildFile);
buildFile->SetComment(fileRef->GetComment());
buildFile->AddAttribute("fileRef", this->CreateObjectReference(fileRef));
this->FileRefToBuildFileMap[fileRef] = buildFile;
return buildFile;
}
return it->second;
}
return nullptr;
2012-04-19 19:04:21 +03:00
}
2018-04-23 21:13:27 +02:00
class XCodeGeneratorExpressionInterpreter
: public cmGeneratorExpressionInterpreter
{
public:
XCodeGeneratorExpressionInterpreter(cmSourceFile* sourceFile,
cmLocalGenerator* localGenerator,
2018-10-28 12:09:07 +01:00
cmGeneratorTarget* headTarget,
2018-04-23 21:13:27 +02:00
const std::string& lang)
2018-10-28 12:09:07 +01:00
: cmGeneratorExpressionInterpreter(
localGenerator, "NO-PER-CONFIG-SUPPORT-IN-XCODE", headTarget, lang)
2018-04-23 21:13:27 +02:00
, SourceFile(sourceFile)
{
}
2019-11-11 23:01:05 +01:00
XCodeGeneratorExpressionInterpreter(
XCodeGeneratorExpressionInterpreter const&) = delete;
XCodeGeneratorExpressionInterpreter& operator=(
XCodeGeneratorExpressionInterpreter const&) = delete;
2018-10-28 12:09:07 +01:00
const std::string& Evaluate(const char* expression,
const std::string& property)
2020-08-30 11:54:41 +02:00
{
return this->Evaluate(std::string(expression ? expression : ""), property);
}
const std::string& Evaluate(const std::string& expression,
const std::string& property)
2018-04-23 21:13:27 +02:00
{
2018-10-28 12:09:07 +01:00
const std::string& processed =
2018-04-23 21:13:27 +02:00
this->cmGeneratorExpressionInterpreter::Evaluate(expression, property);
2018-10-28 12:09:07 +01:00
if (this->CompiledGeneratorExpression->GetHadContextSensitiveCondition()) {
2018-04-23 21:13:27 +02:00
std::ostringstream e;
/* clang-format off */
e <<
"Xcode does not support per-config per-source " << property << ":\n"
" " << expression << "\n"
"specified for source:\n"
2020-02-01 23:06:01 +01:00
" " << this->SourceFile->ResolveFullPath() << "\n";
2018-04-23 21:13:27 +02:00
/* clang-format on */
2019-11-11 23:01:05 +01:00
this->LocalGenerator->IssueMessage(MessageType::FATAL_ERROR, e.str());
2018-04-23 21:13:27 +02:00
}
return processed;
}
private:
cmSourceFile* SourceFile = nullptr;
};
2016-07-09 11:21:54 +02:00
cmXCodeObject* cmGlobalXCodeGenerator::CreateXCodeSourceFile(
cmLocalGenerator* lg, cmSourceFile* sf, cmGeneratorTarget* gtgt)
{
2018-04-23 21:13:27 +02:00
std::string lang = this->CurrentLocalGenerator->GetSourceFileLanguage(*sf);
XCodeGeneratorExpressionInterpreter genexInterpreter(sf, lg, gtgt, lang);
// Add flags from target and source file properties.
std::string flags;
2020-08-30 11:54:41 +02:00
std::string const& srcfmt = sf->GetSafeProperty("Fortran_FORMAT");
2016-10-30 18:24:19 +01:00
switch (cmOutputConverter::GetFortranFormat(srcfmt)) {
2016-07-09 11:21:54 +02:00
case cmOutputConverter::FortranFormatFixed:
flags = "-fixed " + flags;
break;
case cmOutputConverter::FortranFormatFree:
flags = "-free " + flags;
break;
default:
break;
}
2021-09-14 00:13:48 +02:00
// Explicitly add the explicit language flag before any other flag
// so user flags can override it.
gtgt->AddExplicitLanguageFlags(flags, *sf);
2018-04-23 21:13:27 +02:00
const std::string COMPILE_FLAGS("COMPILE_FLAGS");
2021-11-20 13:41:27 +01:00
if (cmValue cflags = sf->GetProperty(COMPILE_FLAGS)) {
2020-08-30 11:54:41 +02:00
lg->AppendFlags(flags, genexInterpreter.Evaluate(*cflags, COMPILE_FLAGS));
2018-04-23 21:13:27 +02:00
}
const std::string COMPILE_OPTIONS("COMPILE_OPTIONS");
2021-11-20 13:41:27 +01:00
if (cmValue coptions = sf->GetProperty(COMPILE_OPTIONS)) {
2018-04-23 21:13:27 +02:00
lg->AppendCompileOptions(
2020-08-30 11:54:41 +02:00
flags, genexInterpreter.Evaluate(*coptions, COMPILE_OPTIONS));
2017-04-14 19:02:05 +02:00
}
// Add per-source definitions.
2009-10-04 10:30:41 +03:00
BuildObjectListOrString flagsBuild(this, false);
2018-04-23 21:13:27 +02:00
const std::string COMPILE_DEFINITIONS("COMPILE_DEFINITIONS");
2021-11-20 13:41:27 +01:00
if (cmValue compile_defs = sf->GetProperty(COMPILE_DEFINITIONS)) {
2018-04-23 21:13:27 +02:00
this->AppendDefines(
2018-10-28 12:09:07 +01:00
flagsBuild,
2020-08-30 11:54:41 +02:00
genexInterpreter.Evaluate(*compile_defs, COMPILE_DEFINITIONS).c_str(),
2018-04-23 21:13:27 +02:00
true);
}
2020-02-01 23:06:01 +01:00
if (sf->GetPropertyAsBool("SKIP_PRECOMPILE_HEADERS")) {
this->AppendDefines(flagsBuild, "CMAKE_SKIP_PRECOMPILE_HEADERS", true);
}
2016-07-09 11:21:54 +02:00
if (!flagsBuild.IsEmpty()) {
if (!flags.empty()) {
2009-10-04 10:30:41 +03:00
flags += ' ';
}
2016-07-09 11:21:54 +02:00
flags += flagsBuild.GetString();
}
2018-04-23 21:13:27 +02:00
// Add per-source include directories.
std::vector<std::string> includes;
const std::string INCLUDE_DIRECTORIES("INCLUDE_DIRECTORIES");
2021-11-20 13:41:27 +01:00
if (cmValue cincludes = sf->GetProperty(INCLUDE_DIRECTORIES)) {
2018-04-23 21:13:27 +02:00
lg->AppendIncludeDirectories(
2020-08-30 11:54:41 +02:00
includes, genexInterpreter.Evaluate(*cincludes, INCLUDE_DIRECTORIES),
2018-04-23 21:13:27 +02:00
*sf);
}
2021-09-14 00:13:48 +02:00
lg->AppendFlags(flags,
lg->GetIncludeFlags(includes, gtgt, lang, std::string()));
2012-04-19 19:04:21 +03:00
cmXCodeObject* buildFile =
2021-09-14 00:13:48 +02:00
this->CreateXCodeBuildFileFromPath(sf->ResolveFullPath(), gtgt, lang, sf);
2016-07-09 11:21:54 +02:00
cmXCodeObject* settings = this->CreateObject(cmXCodeObject::ATTRIBUTE_GROUP);
2016-10-30 18:24:19 +01:00
settings->AddAttributeIfNotEmpty("COMPILER_FLAGS",
this->CreateString(flags));
2015-04-27 22:25:09 +02:00
cmGeneratorTarget::SourceFileFlags tsFlags =
2016-07-09 11:21:54 +02:00
gtgt->GetTargetSourceFileFlags(sf);
2016-10-30 18:24:19 +01:00
cmXCodeObject* attrs = this->CreateObject(cmXCodeObject::OBJECT_LIST);
// Is this a "private" or "public" framework header file?
// Set the ATTRIBUTES attribute appropriately...
//
2016-07-09 11:21:54 +02:00
if (gtgt->IsFrameworkOnApple()) {
if (tsFlags.Type == cmGeneratorTarget::SourceFileTypePrivateHeader) {
attrs->AddObject(this->CreateString("Private"));
2016-07-09 11:21:54 +02:00
} else if (tsFlags.Type == cmGeneratorTarget::SourceFileTypePublicHeader) {
attrs->AddObject(this->CreateString("Public"));
}
2016-07-09 11:21:54 +02:00
}
2016-10-30 18:24:19 +01:00
// Add user-specified file attributes.
2021-11-20 13:41:27 +01:00
cmValue extraFileAttributes = sf->GetProperty("XCODE_FILE_ATTRIBUTES");
2016-10-30 18:24:19 +01:00
if (extraFileAttributes) {
// Expand the list of attributes.
2023-07-02 19:51:09 +02:00
cmList attributes{ *extraFileAttributes };
2016-10-30 18:24:19 +01:00
// Store the attributes.
2018-04-23 21:13:27 +02:00
for (const auto& attribute : attributes) {
attrs->AddObject(this->CreateString(attribute));
2016-10-30 18:24:19 +01:00
}
}
settings->AddAttributeIfNotEmpty("ATTRIBUTES", attrs);
2021-09-14 00:13:48 +02:00
if (buildFile) {
buildFile->AddAttributeIfNotEmpty("settings", settings);
}
return buildFile;
}
2018-04-23 21:13:27 +02:00
void cmGlobalXCodeGenerator::AddXCodeProjBuildRule(
cmGeneratorTarget* target, std::vector<cmSourceFile*>& sources) const
{
std::string listfile =
2020-02-01 23:06:01 +01:00
cmStrCat(target->GetLocalGenerator()->GetCurrentSourceDirectory(),
"/CMakeLists.txt");
cmSourceFile* srcCMakeLists = target->Makefile->GetOrCreateSource(
listfile, false, cmSourceFileLocationKind::Known);
2020-08-30 11:54:41 +02:00
if (!cm::contains(sources, srcCMakeLists)) {
2018-04-23 21:13:27 +02:00
sources.push_back(srcCMakeLists);
}
}
2021-09-14 00:13:48 +02:00
namespace {
bool IsLinkPhaseLibraryExtension(const std::string& fileExt)
{
// Empty file extension is a special case for paths to framework's
// internal binary which could be MyFw.framework/Versions/*/MyFw
return (fileExt == ".framework" || fileExt == ".a" || fileExt == ".o" ||
fileExt == ".dylib" || fileExt == ".tbd" || fileExt.empty());
}
bool IsLibraryType(const std::string& fileType)
{
return (fileType == "wrapper.framework" || fileType == "archive.ar" ||
fileType == "compiled.mach-o.objfile" ||
fileType == "compiled.mach-o.dylib" ||
fileType == "compiled.mach-o.executable" ||
fileType == "sourcecode.text-based-dylib-definition");
}
std::string GetDirectoryValueFromFileExtension(const std::string& dirExt)
{
std::string ext = cmSystemTools::LowerCase(dirExt);
if (ext == "framework") {
return "wrapper.framework";
}
if (ext == "xcassets") {
return "folder.assetcatalog";
}
return "folder";
}
std::string GetSourcecodeValueFromFileExtension(
const std::string& _ext, const std::string& lang,
bool& keepLastKnownFileType, const std::vector<std::string>& enabled_langs)
{
2012-04-19 19:04:21 +03:00
std::string ext = cmSystemTools::LowerCase(_ext);
std::string sourcecode = "sourcecode";
2016-07-09 11:21:54 +02:00
if (ext == "o") {
2021-09-14 00:13:48 +02:00
keepLastKnownFileType = true;
sourcecode = "compiled.mach-o.objfile";
2016-07-09 11:21:54 +02:00
} else if (ext == "xctest") {
2015-08-17 11:37:30 +02:00
sourcecode = "wrapper.cfbundle";
2016-07-09 11:21:54 +02:00
} else if (ext == "xib") {
2014-08-03 19:52:23 +02:00
keepLastKnownFileType = true;
2009-10-04 10:30:41 +03:00
sourcecode = "file.xib";
2016-07-09 11:21:54 +02:00
} else if (ext == "storyboard") {
2014-08-03 19:52:23 +02:00
keepLastKnownFileType = true;
2012-06-27 20:52:58 +03:00
sourcecode = "file.storyboard";
2021-09-14 00:13:48 +02:00
} else if (ext == "mm" && !cm::contains(enabled_langs, "OBJCXX")) {
sourcecode += ".cpp.objcpp";
2021-09-14 00:13:48 +02:00
} else if (ext == "m" && !cm::contains(enabled_langs, "OBJC")) {
sourcecode += ".c.objc";
2016-07-09 11:21:54 +02:00
} else if (ext == "swift") {
2015-11-17 17:22:37 +01:00
sourcecode += ".swift";
2016-07-09 11:21:54 +02:00
} else if (ext == "plist") {
sourcecode += ".text.plist";
2016-07-09 11:21:54 +02:00
} else if (ext == "h") {
2009-10-04 10:30:41 +03:00
sourcecode += ".c.h";
2016-07-09 11:21:54 +02:00
} else if (ext == "hxx" || ext == "hpp" || ext == "txx" || ext == "pch" ||
2021-11-20 13:41:27 +01:00
ext == "hh" || ext == "inl") {
2009-10-04 10:30:41 +03:00
sourcecode += ".cpp.h";
2016-07-09 11:21:54 +02:00
} else if (ext == "png" || ext == "gif" || ext == "jpg") {
2014-08-03 19:52:23 +02:00
keepLastKnownFileType = true;
2012-04-19 19:04:21 +03:00
sourcecode = "image";
2016-07-09 11:21:54 +02:00
} else if (ext == "txt") {
2012-04-19 19:04:21 +03:00
sourcecode += ".text";
2016-07-09 11:21:54 +02:00
} else if (lang == "CXX") {
2012-04-19 19:04:21 +03:00
sourcecode += ".cpp.cpp";
2016-07-09 11:21:54 +02:00
} else if (lang == "C") {
2012-04-19 19:04:21 +03:00
sourcecode += ".c.c";
2020-02-01 23:06:01 +01:00
} else if (lang == "OBJCXX") {
sourcecode += ".cpp.objcpp";
} else if (lang == "OBJC") {
sourcecode += ".c.objc";
2016-07-09 11:21:54 +02:00
} else if (lang == "Fortran") {
2012-04-19 19:04:21 +03:00
sourcecode += ".fortran.f90";
2016-07-09 11:21:54 +02:00
} else if (lang == "ASM") {
2013-03-16 19:13:01 +02:00
sourcecode += ".asm";
2016-07-09 11:21:54 +02:00
} else if (ext == "metal") {
2015-08-17 11:37:30 +02:00
sourcecode += ".metal";
2016-10-30 18:24:19 +01:00
} else if (ext == "mig") {
sourcecode += ".mig";
2021-09-14 00:13:48 +02:00
} else if (ext == "tbd") {
sourcecode += ".text-based-dylib-definition";
} else if (ext == "a") {
keepLastKnownFileType = true;
sourcecode = "archive.ar";
} else if (ext == "dylib") {
keepLastKnownFileType = true;
sourcecode = "compiled.mach-o.dylib";
} else if (ext == "framework") {
keepLastKnownFileType = true;
sourcecode = "wrapper.framework";
} else if (ext == "xcassets") {
keepLastKnownFileType = true;
sourcecode = "folder.assetcatalog";
2022-08-04 22:12:04 +02:00
} else if (ext == "xcconfig") {
keepLastKnownFileType = true;
sourcecode = "text.xcconfig";
2016-07-09 11:21:54 +02:00
}
// else
// {
// // Already specialized above or we leave sourcecode == "sourcecode"
// // which is probably the most correct choice. Extensionless headers,
// // for example... Or file types unknown to Xcode that do not map to a
2013-11-03 12:27:13 +02:00
// // valid explicitFileType value.
// }
2012-04-19 19:04:21 +03:00
return sourcecode;
}
2022-08-04 22:12:04 +02:00
template <class T>
std::string GetTargetObjectDirArch(T const& target,
const std::string& defaultVal)
2021-09-14 00:13:48 +02:00
{
2023-07-02 19:51:09 +02:00
cmList archs{ target.GetSafeProperty("OSX_ARCHITECTURES") };
2022-08-04 22:12:04 +02:00
if (archs.size() > 1) {
return "$(CURRENT_ARCH)";
} else if (archs.size() == 1) {
return archs.front();
} else {
return defaultVal;
2021-09-14 00:13:48 +02:00
}
}
} // anonymous
2022-08-04 22:12:04 +02:00
// Extracts the framework directory, if path matches the framework syntax
// otherwise returns the path untouched
std::string cmGlobalXCodeGenerator::GetLibraryOrFrameworkPath(
const std::string& path) const
{
2022-11-16 20:14:03 +01:00
auto fwDescriptor = this->SplitFrameworkPath(path);
if (fwDescriptor) {
return fwDescriptor->GetFrameworkPath();
2022-08-04 22:12:04 +02:00
}
return path;
}
2016-07-09 11:21:54 +02:00
cmXCodeObject* cmGlobalXCodeGenerator::CreateXCodeFileReferenceFromPath(
const std::string& fullpath, cmGeneratorTarget* target,
const std::string& lang, cmSourceFile* sf)
2012-04-19 19:04:21 +03:00
{
2015-04-27 22:25:09 +02:00
bool useLastKnownFileType = false;
std::string fileType;
2016-07-09 11:21:54 +02:00
if (sf) {
2021-11-20 13:41:27 +01:00
if (cmValue e = sf->GetProperty("XCODE_EXPLICIT_FILE_TYPE")) {
2020-08-30 11:54:41 +02:00
fileType = *e;
2021-11-20 13:41:27 +01:00
} else if (cmValue l = sf->GetProperty("XCODE_LAST_KNOWN_FILE_TYPE")) {
2015-04-27 22:25:09 +02:00
useLastKnownFileType = true;
2020-08-30 11:54:41 +02:00
fileType = *l;
2014-08-03 19:52:23 +02:00
}
2016-07-09 11:21:54 +02:00
}
2021-09-14 00:13:48 +02:00
// Make a copy so that we can override it later
std::string path = cmSystemTools::CollapseFullPath(fullpath);
// Compute the extension without leading '.'.
std::string ext = cmSystemTools::GetFilenameLastExtension(path);
if (!ext.empty()) {
ext = ext.substr(1);
}
2016-07-09 11:21:54 +02:00
if (fileType.empty()) {
2022-08-04 22:12:04 +02:00
path = this->GetLibraryOrFrameworkPath(path);
2021-09-14 00:13:48 +02:00
ext = cmSystemTools::GetFilenameLastExtension(path);
2016-07-09 11:21:54 +02:00
if (!ext.empty()) {
2015-04-27 22:25:09 +02:00
ext = ext.substr(1);
2016-07-09 11:21:54 +02:00
}
2015-04-27 22:25:09 +02:00
// If fullpath references a directory, then we need to specify
// lastKnownFileType as folder in order for Xcode to be able to
// open the contents of the folder.
// (Xcode 4.6 does not like explicitFileType=folder).
2021-09-14 00:13:48 +02:00
if (cmSystemTools::FileIsDirectory(path)) {
fileType = GetDirectoryValueFromFileExtension(ext);
2015-04-27 22:25:09 +02:00
useLastKnownFileType = true;
2016-07-09 11:21:54 +02:00
} else {
2021-09-14 00:13:48 +02:00
if (ext.empty() && !sf) {
// Special case for executable or library without extension
// that is not a source file. We can't tell which without reading
// its Mach-O header, but the file might not exist yet, so we
// have to pick one here.
useLastKnownFileType = true;
fileType = "compiled.mach-o.executable";
} else {
fileType = GetSourcecodeValueFromFileExtension(
ext, lang, useLastKnownFileType, this->EnabledLangs);
}
2014-08-03 19:52:23 +02:00
}
2016-07-09 11:21:54 +02:00
}
2021-09-14 00:13:48 +02:00
std::string key = GetGroupMapKeyFromPath(target, path);
cmXCodeObject* fileRef = this->FileRefs[key];
if (!fileRef) {
fileRef = this->CreateObject(cmXCodeObject::PBXFileReference);
fileRef->SetComment(path);
this->FileRefs[key] = fileRef;
}
fileRef->AddAttribute("fileEncoding", this->CreateString("4"));
2016-07-09 11:21:54 +02:00
fileRef->AddAttribute(useLastKnownFileType ? "lastKnownFileType"
: "explicitFileType",
2015-04-27 22:25:09 +02:00
this->CreateString(fileType));
2009-10-04 10:30:41 +03:00
// Store the file path relative to the top of the source tree.
2021-09-14 00:13:48 +02:00
if (!IsLibraryType(fileType)) {
path = this->RelativeToSource(path);
}
2016-10-30 18:24:19 +01:00
std::string name = cmSystemTools::GetFilenameName(path);
2016-07-09 11:21:54 +02:00
const char* sourceTree =
2019-11-11 23:01:05 +01:00
cmSystemTools::FileIsFullPath(path) ? "<absolute>" : "SOURCE_ROOT";
2016-07-09 11:21:54 +02:00
fileRef->AddAttribute("name", this->CreateString(name));
fileRef->AddAttribute("path", this->CreateString(path));
2009-10-04 10:30:41 +03:00
fileRef->AddAttribute("sourceTree", this->CreateString(sourceTree));
2021-09-14 00:13:48 +02:00
cmXCodeObject* group = this->GroupMap[key];
if (!group && IsLibraryType(fileType)) {
group = this->FrameworkGroup;
this->GroupMap[key] = group;
}
if (!group) {
cmSystemTools::Error("Could not find a PBX group for " + key);
return nullptr;
}
cmXCodeObject* children = group->GetAttribute("children");
if (!children->HasObject(fileRef)) {
children->AddObject(fileRef);
}
return fileRef;
}
2016-07-09 11:21:54 +02:00
cmXCodeObject* cmGlobalXCodeGenerator::CreateXCodeFileReference(
cmSourceFile* sf, cmGeneratorTarget* target)
2012-04-19 19:04:21 +03:00
{
2016-07-09 11:21:54 +02:00
std::string lang = this->CurrentLocalGenerator->GetSourceFileLanguage(*sf);
2012-04-19 19:04:21 +03:00
2020-02-01 23:06:01 +01:00
return this->CreateXCodeFileReferenceFromPath(sf->ResolveFullPath(), target,
2016-07-09 11:21:54 +02:00
lang, sf);
2012-04-19 19:04:21 +03:00
}
bool cmGlobalXCodeGenerator::SpecialTargetEmitted(std::string const& tname)
{
2021-09-14 00:13:48 +02:00
if (tname == "ALL_BUILD" || tname == "install" || tname == "package" ||
tname == "RUN_TESTS" || tname == CMAKE_CHECK_BUILD_SYSTEM_TARGET) {
2016-07-09 11:21:54 +02:00
if (this->TargetDoneSet.find(tname) != this->TargetDoneSet.end()) {
return true;
2016-07-09 11:21:54 +02:00
}
this->TargetDoneSet.insert(tname);
return false;
2016-07-09 11:21:54 +02:00
}
return false;
}
void cmGlobalXCodeGenerator::SetCurrentLocalGenerator(cmLocalGenerator* gen)
{
this->CurrentLocalGenerator = gen;
this->CurrentMakefile = gen->GetMakefile();
// Select the current set of configuration types.
2021-09-14 00:13:48 +02:00
this->CurrentConfigurationTypes =
this->CurrentMakefile->GetGeneratorConfigs(cmMakefile::IncludeEmptyConfig);
}
2013-03-16 19:13:01 +02:00
struct cmSourceFilePathCompare
{
bool operator()(cmSourceFile* l, cmSourceFile* r)
{
2020-02-01 23:06:01 +01:00
return l->ResolveFullPath() < r->ResolveFullPath();
2013-03-16 19:13:01 +02:00
}
};
2015-04-27 22:25:09 +02:00
struct cmCompareTargets
{
2018-10-28 12:09:07 +01:00
bool operator()(cmXCodeObject* l, cmXCodeObject* r) const
2015-04-27 22:25:09 +02:00
{
2018-10-28 12:09:07 +01:00
std::string const& a = l->GetTarget()->GetName();
std::string const& b = r->GetTarget()->GetName();
2016-07-09 11:21:54 +02:00
if (a == "ALL_BUILD") {
2015-04-27 22:25:09 +02:00
return true;
2016-07-09 11:21:54 +02:00
}
if (b == "ALL_BUILD") {
2015-04-27 22:25:09 +02:00
return false;
2016-07-09 11:21:54 +02:00
}
2018-10-28 12:09:07 +01:00
return a < b;
2015-04-27 22:25:09 +02:00
}
};
2016-07-09 11:21:54 +02:00
bool cmGlobalXCodeGenerator::CreateXCodeTargets(
cmLocalGenerator* gen, std::vector<cmXCodeObject*>& targets)
{
this->SetCurrentLocalGenerator(gen);
2021-09-14 00:13:48 +02:00
std::vector<cmGeneratorTarget*> gts =
this->GetLocalGeneratorTargetsInOrder(gen);
2018-10-28 12:09:07 +01:00
for (auto gtgt : gts) {
if (!this->CreateXCodeTarget(gtgt, targets)) {
return false;
}
2016-07-09 11:21:54 +02:00
}
2018-10-28 12:09:07 +01:00
std::sort(targets.begin(), targets.end(), cmCompareTargets());
return true;
}
2018-10-28 12:09:07 +01:00
bool cmGlobalXCodeGenerator::CreateXCodeTarget(
cmGeneratorTarget* gtgt, std::vector<cmXCodeObject*>& targets)
{
std::string targetName = gtgt->GetName();
2018-10-28 12:09:07 +01:00
// make sure ALL_BUILD, INSTALL, etc are only done once
if (this->SpecialTargetEmitted(targetName)) {
return true;
}
2014-08-03 19:52:23 +02:00
2021-09-14 00:13:48 +02:00
if (!gtgt->IsInBuildSystem()) {
2018-10-28 12:09:07 +01:00
return true;
}
2022-11-16 20:14:03 +01:00
for (std::string const& configName : this->CurrentConfigurationTypes) {
gtgt->CheckCxxModuleStatus(configName);
}
if (gtgt->HaveCxx20ModuleSources()) {
gtgt->Makefile->IssueMessage(
MessageType::FATAL_ERROR,
cmStrCat("The \"", gtgt->GetName(),
"\" target contains C++ module sources which are not "
"supported by the generator"));
}
2021-09-14 00:13:48 +02:00
auto& gtgt_visited = this->CommandsVisited[gtgt];
auto& deps = this->GetTargetDirectDepends(gtgt);
for (auto& d : deps) {
// Take the union of visited source files of custom commands so far.
// ComputeTargetOrder ensures our dependencies already visited their
// custom commands and updated CommandsVisited.
auto& dep_visited = this->CommandsVisited[d];
gtgt_visited.insert(dep_visited.begin(), dep_visited.end());
}
2018-10-28 12:09:07 +01:00
if (gtgt->GetType() == cmStateEnums::UTILITY ||
2021-09-14 00:13:48 +02:00
gtgt->GetType() == cmStateEnums::INTERFACE_LIBRARY ||
2018-10-28 12:09:07 +01:00
gtgt->GetType() == cmStateEnums::GLOBAL_TARGET) {
cmXCodeObject* t = this->CreateUtilityTarget(gtgt);
if (!t) {
2015-04-27 22:25:09 +02:00
return false;
2016-07-09 11:21:54 +02:00
}
2018-10-28 12:09:07 +01:00
targets.push_back(t);
return true;
}
2018-04-23 21:13:27 +02:00
2018-10-28 12:09:07 +01:00
// organize the sources
2021-09-14 00:13:48 +02:00
std::vector<cmSourceFile*> commonSourceFiles;
if (!gtgt->GetConfigCommonSourceFilesForXcode(commonSourceFiles)) {
2018-10-28 12:09:07 +01:00
return false;
}
2018-04-23 21:13:27 +02:00
2018-10-28 12:09:07 +01:00
// Add CMakeLists.txt file for user convenience.
2021-09-14 00:13:48 +02:00
this->AddXCodeProjBuildRule(gtgt, commonSourceFiles);
2013-03-16 19:13:01 +02:00
2019-11-11 23:01:05 +01:00
// Add the Info.plist we are about to generate for an App Bundle.
if (gtgt->GetPropertyAsBool("MACOSX_BUNDLE")) {
std::string plist = this->ComputeInfoPListLocation(gtgt);
2020-02-01 23:06:01 +01:00
cmSourceFile* sf = gtgt->Makefile->GetOrCreateSource(
plist, true, cmSourceFileLocationKind::Known);
2021-09-14 00:13:48 +02:00
commonSourceFiles.push_back(sf);
2019-11-11 23:01:05 +01:00
}
2021-09-14 00:13:48 +02:00
std::sort(commonSourceFiles.begin(), commonSourceFiles.end(),
cmSourceFilePathCompare());
2015-04-27 22:25:09 +02:00
2018-10-28 12:09:07 +01:00
gtgt->ComputeObjectMapping();
2018-10-28 12:09:07 +01:00
std::vector<cmXCodeObject*> externalObjFiles;
std::vector<cmXCodeObject*> headerFiles;
std::vector<cmXCodeObject*> resourceFiles;
std::vector<cmXCodeObject*> sourceFiles;
2021-09-14 00:13:48 +02:00
for (auto sourceFile : commonSourceFiles) {
2018-10-28 12:09:07 +01:00
cmXCodeObject* xsf = this->CreateXCodeSourceFile(
this->CurrentLocalGenerator, sourceFile, gtgt);
2021-09-14 00:13:48 +02:00
cmXCodeObject* fr = xsf->GetAttribute("fileRef");
cmXCodeObject* filetype =
fr->GetObject()->GetAttribute("explicitFileType");
if (!filetype) {
filetype = fr->GetObject()->GetAttribute("lastKnownFileType");
}
2018-10-28 12:09:07 +01:00
cmGeneratorTarget::SourceFileFlags tsFlags =
gtgt->GetTargetSourceFileFlags(sourceFile);
2018-10-28 12:09:07 +01:00
if (filetype && filetype->GetString() == "compiled.mach-o.objfile") {
if (sourceFile->GetObjectLibrary().empty()) {
2013-11-03 12:27:13 +02:00
externalObjFiles.push_back(xsf);
2012-04-19 19:04:21 +03:00
}
2018-10-28 12:09:07 +01:00
} else if (this->IsHeaderFile(sourceFile) ||
(tsFlags.Type ==
cmGeneratorTarget::SourceFileTypePrivateHeader) ||
(tsFlags.Type ==
cmGeneratorTarget::SourceFileTypePublicHeader)) {
headerFiles.push_back(xsf);
} else if (tsFlags.Type == cmGeneratorTarget::SourceFileTypeResource) {
resourceFiles.push_back(xsf);
2020-02-01 23:06:01 +01:00
} else if (!sourceFile->GetPropertyAsBool("HEADER_FILE_ONLY") &&
!gtgt->IsSourceFilePartOfUnityBatch(
sourceFile->ResolveFullPath())) {
2018-10-28 12:09:07 +01:00
// Include this file in the build if it has a known language
// and has not been listed as an ignored extension for this
// generator.
if (!this->CurrentLocalGenerator->GetSourceFileLanguage(*sourceFile)
.empty() &&
!this->IgnoreFile(sourceFile->GetExtension().c_str())) {
sourceFiles.push_back(xsf);
2016-07-09 11:21:54 +02:00
}
}
2018-10-28 12:09:07 +01:00
}
2018-10-28 12:09:07 +01:00
// some build phases only apply to bundles and/or frameworks
bool isFrameworkTarget = gtgt->IsFrameworkOnApple();
bool isBundleTarget = gtgt->GetPropertyAsBool("MACOSX_BUNDLE");
bool isCFBundleTarget = gtgt->IsCFBundleOnApple();
cmXCodeObject* buildFiles = nullptr;
// create source build phase
cmXCodeObject* sourceBuildPhase = nullptr;
if (!sourceFiles.empty()) {
sourceBuildPhase = this->CreateObject(cmXCodeObject::PBXSourcesBuildPhase);
sourceBuildPhase->SetComment("Sources");
sourceBuildPhase->AddAttribute("buildActionMask",
this->CreateString("2147483647"));
buildFiles = this->CreateObject(cmXCodeObject::OBJECT_LIST);
for (auto& sourceFile : sourceFiles) {
buildFiles->AddObject(sourceFile);
}
sourceBuildPhase->AddAttribute("files", buildFiles);
sourceBuildPhase->AddAttribute("runOnlyForDeploymentPostprocessing",
this->CreateString("0"));
}
// create header build phase - only for framework targets
cmXCodeObject* headerBuildPhase = nullptr;
if (!headerFiles.empty() && isFrameworkTarget) {
headerBuildPhase = this->CreateObject(cmXCodeObject::PBXHeadersBuildPhase);
headerBuildPhase->SetComment("Headers");
headerBuildPhase->AddAttribute("buildActionMask",
this->CreateString("2147483647"));
buildFiles = this->CreateObject(cmXCodeObject::OBJECT_LIST);
for (auto& headerFile : headerFiles) {
buildFiles->AddObject(headerFile);
}
headerBuildPhase->AddAttribute("files", buildFiles);
headerBuildPhase->AddAttribute("runOnlyForDeploymentPostprocessing",
this->CreateString("0"));
}
// create resource build phase - only for framework or bundle targets
cmXCodeObject* resourceBuildPhase = nullptr;
if (!resourceFiles.empty() &&
(isFrameworkTarget || isBundleTarget || isCFBundleTarget)) {
resourceBuildPhase =
this->CreateObject(cmXCodeObject::PBXResourcesBuildPhase);
resourceBuildPhase->SetComment("Resources");
resourceBuildPhase->AddAttribute("buildActionMask",
this->CreateString("2147483647"));
buildFiles = this->CreateObject(cmXCodeObject::OBJECT_LIST);
for (auto& resourceFile : resourceFiles) {
buildFiles->AddObject(resourceFile);
2016-07-09 11:21:54 +02:00
}
2018-10-28 12:09:07 +01:00
resourceBuildPhase->AddAttribute("files", buildFiles);
resourceBuildPhase->AddAttribute("runOnlyForDeploymentPostprocessing",
this->CreateString("0"));
}
2018-10-28 12:09:07 +01:00
// create vector of "non-resource content file" build phases - only for
// framework or bundle targets
std::vector<cmXCodeObject*> contentBuildPhases;
if (isFrameworkTarget || isBundleTarget || isCFBundleTarget) {
2020-02-01 23:06:01 +01:00
using mapOfVectorOfSourceFiles =
std::map<std::string, std::vector<cmSourceFile*>>;
2018-10-28 12:09:07 +01:00
mapOfVectorOfSourceFiles bundleFiles;
2021-09-14 00:13:48 +02:00
for (auto sourceFile : commonSourceFiles) {
2018-10-28 12:09:07 +01:00
cmGeneratorTarget::SourceFileFlags tsFlags =
gtgt->GetTargetSourceFileFlags(sourceFile);
if (tsFlags.Type == cmGeneratorTarget::SourceFileTypeMacContent) {
bundleFiles[tsFlags.MacFolder].push_back(sourceFile);
2016-07-09 11:21:54 +02:00
}
2018-10-28 12:09:07 +01:00
}
2020-02-01 23:06:01 +01:00
for (auto const& keySources : bundleFiles) {
2018-10-28 12:09:07 +01:00
cmXCodeObject* copyFilesBuildPhase =
this->CreateObject(cmXCodeObject::PBXCopyFilesBuildPhase);
copyFilesBuildPhase->SetComment("Copy files");
copyFilesBuildPhase->AddAttribute("buildActionMask",
this->CreateString("2147483647"));
copyFilesBuildPhase->AddAttribute("dstSubfolderSpec",
this->CreateString("6"));
std::ostringstream ostr;
if (gtgt->IsFrameworkOnApple()) {
// dstPath in frameworks is relative to Versions/<version>
ostr << keySources.first;
} else if (keySources.first != "MacOS") {
if (gtgt->Target->GetMakefile()->PlatformIsAppleEmbedded()) {
2018-04-23 21:13:27 +02:00
ostr << keySources.first;
2018-10-28 12:09:07 +01:00
} else {
// dstPath in bundles is relative to Contents/MacOS
ostr << "../" << keySources.first;
}
}
2018-10-28 12:09:07 +01:00
copyFilesBuildPhase->AddAttribute("dstPath",
this->CreateString(ostr.str()));
copyFilesBuildPhase->AddAttribute("runOnlyForDeploymentPostprocessing",
this->CreateString("0"));
buildFiles = this->CreateObject(cmXCodeObject::OBJECT_LIST);
copyFilesBuildPhase->AddAttribute("files", buildFiles);
for (auto sourceFile : keySources.second) {
cmXCodeObject* xsf = this->CreateXCodeSourceFile(
this->CurrentLocalGenerator, sourceFile, gtgt);
buildFiles->AddObject(xsf);
}
contentBuildPhases.push_back(copyFilesBuildPhase);
2016-07-09 11:21:54 +02:00
}
2018-10-28 12:09:07 +01:00
}
2018-10-28 12:09:07 +01:00
// create vector of "resource content file" build phases - only for
// framework or bundle targets
if (isFrameworkTarget || isBundleTarget || isCFBundleTarget) {
2020-02-01 23:06:01 +01:00
using mapOfVectorOfSourceFiles =
std::map<std::string, std::vector<cmSourceFile*>>;
2018-10-28 12:09:07 +01:00
mapOfVectorOfSourceFiles bundleFiles;
2021-09-14 00:13:48 +02:00
for (auto sourceFile : commonSourceFiles) {
2018-10-28 12:09:07 +01:00
cmGeneratorTarget::SourceFileFlags tsFlags =
gtgt->GetTargetSourceFileFlags(sourceFile);
if (tsFlags.Type == cmGeneratorTarget::SourceFileTypeDeepResource) {
bundleFiles[tsFlags.MacFolder].push_back(sourceFile);
2017-07-20 19:35:53 +02:00
}
}
2020-02-01 23:06:01 +01:00
for (auto const& keySources : bundleFiles) {
2018-10-28 12:09:07 +01:00
cmXCodeObject* copyFilesBuildPhase =
this->CreateObject(cmXCodeObject::PBXCopyFilesBuildPhase);
copyFilesBuildPhase->SetComment("Copy files");
copyFilesBuildPhase->AddAttribute("buildActionMask",
this->CreateString("2147483647"));
2018-10-28 12:09:07 +01:00
copyFilesBuildPhase->AddAttribute("dstSubfolderSpec",
this->CreateString("7"));
copyFilesBuildPhase->AddAttribute("dstPath",
this->CreateString(keySources.first));
copyFilesBuildPhase->AddAttribute("runOnlyForDeploymentPostprocessing",
this->CreateString("0"));
buildFiles = this->CreateObject(cmXCodeObject::OBJECT_LIST);
2018-10-28 12:09:07 +01:00
copyFilesBuildPhase->AddAttribute("files", buildFiles);
for (auto sourceFile : keySources.second) {
cmXCodeObject* xsf = this->CreateXCodeSourceFile(
this->CurrentLocalGenerator, sourceFile, gtgt);
buildFiles->AddObject(xsf);
2016-07-09 11:21:54 +02:00
}
2018-10-28 12:09:07 +01:00
contentBuildPhases.push_back(copyFilesBuildPhase);
}
}
2021-09-14 00:13:48 +02:00
// Always create Link Binary With Libraries build phase
2018-10-28 12:09:07 +01:00
cmXCodeObject* frameworkBuildPhase = nullptr;
2021-09-14 00:13:48 +02:00
frameworkBuildPhase =
this->CreateObject(cmXCodeObject::PBXFrameworksBuildPhase);
frameworkBuildPhase->SetComment("Frameworks");
frameworkBuildPhase->AddAttribute("buildActionMask",
this->CreateString("2147483647"));
buildFiles = this->CreateObject(cmXCodeObject::OBJECT_LIST);
frameworkBuildPhase->AddAttribute("files", buildFiles);
// Add all collected .o files to this build phase
for (auto& externalObjFile : externalObjFiles) {
buildFiles->AddObject(externalObjFile);
}
frameworkBuildPhase->AddAttribute("runOnlyForDeploymentPostprocessing",
this->CreateString("0"));
2018-10-28 12:09:07 +01:00
// create list of build phases and create the Xcode target
cmXCodeObject* buildPhases = this->CreateObject(cmXCodeObject::OBJECT_LIST);
2018-10-28 12:09:07 +01:00
this->CreateCustomCommands(buildPhases, sourceBuildPhase, headerBuildPhase,
resourceBuildPhase, contentBuildPhases,
frameworkBuildPhase, gtgt);
2018-10-28 12:09:07 +01:00
targets.push_back(this->CreateXCodeTarget(gtgt, buildPhases));
2015-04-27 22:25:09 +02:00
return true;
}
2009-10-04 10:30:41 +03:00
void cmGlobalXCodeGenerator::ForceLinkerLanguages()
{
2020-08-30 11:54:41 +02:00
for (const auto& localGenerator : this->LocalGenerators) {
2016-03-13 13:35:51 +01:00
// All targets depend on the build-system check target.
2020-08-30 11:54:41 +02:00
for (const auto& tgt : localGenerator->GetGeneratorTargets()) {
2016-03-13 13:35:51 +01:00
// This makes sure all targets link using the proper language.
2020-08-30 11:54:41 +02:00
this->ForceLinkerLanguage(tgt.get());
2009-10-04 10:30:41 +03:00
}
2016-07-09 11:21:54 +02:00
}
2009-10-04 10:30:41 +03:00
}
2016-03-13 13:35:51 +01:00
void cmGlobalXCodeGenerator::ForceLinkerLanguage(cmGeneratorTarget* gtgt)
2009-10-04 10:30:41 +03:00
{
// This matters only for targets that link.
2017-04-14 19:02:05 +02:00
if (gtgt->GetType() != cmStateEnums::EXECUTABLE &&
gtgt->GetType() != cmStateEnums::SHARED_LIBRARY &&
gtgt->GetType() != cmStateEnums::MODULE_LIBRARY) {
2009-10-04 10:30:41 +03:00
return;
2016-07-09 11:21:54 +02:00
}
2009-10-04 10:30:41 +03:00
2015-11-17 17:22:37 +01:00
std::string llang = gtgt->GetLinkerLanguage("NOCONFIG");
2016-07-09 11:21:54 +02:00
if (llang.empty()) {
return;
}
2009-10-04 10:30:41 +03:00
// If the language is compiled as a source trust Xcode to link with it.
2018-04-23 21:13:27 +02:00
for (auto const& Language :
2022-08-04 22:12:04 +02:00
gtgt
->GetLinkImplementation("NOCONFIG",
cmGeneratorTarget::LinkInterfaceFor::Link)
->Languages) {
2018-01-26 17:06:56 +01:00
if (Language == llang) {
2016-07-09 11:21:54 +02:00
return;
2009-10-04 10:30:41 +03:00
}
2016-07-09 11:21:54 +02:00
}
2009-10-04 10:30:41 +03:00
2021-09-14 00:13:48 +02:00
// Allow empty source file list for iOS Sticker packs
if (const char* productType = GetTargetProductType(gtgt)) {
if (strcmp(productType,
"com.apple.product-type.app-extension.messages-sticker-pack") ==
0)
return;
}
2009-10-04 10:30:41 +03:00
// Add an empty source file to the target that compiles with the
// linker language. This should convince Xcode to choose the proper
// language.
2016-03-13 13:35:51 +01:00
cmMakefile* mf = gtgt->Target->GetMakefile();
2020-02-01 23:06:01 +01:00
std::string fname = cmStrCat(
gtgt->GetLocalGenerator()->GetCurrentBinaryDirectory(), "/CMakeFiles/",
gtgt->GetName(), "-CMakeForceLinker.", cmSystemTools::LowerCase(llang));
2009-10-04 10:30:41 +03:00
{
2019-11-11 23:01:05 +01:00
cmGeneratedFileStream fout(fname);
2016-07-09 11:21:54 +02:00
fout << "\n";
2009-10-04 10:30:41 +03:00
}
2016-10-30 18:24:19 +01:00
if (cmSourceFile* sf = mf->GetOrCreateSource(fname)) {
2021-11-20 13:41:27 +01:00
sf->SetProperty("LANGUAGE", llang);
2016-03-13 13:35:51 +01:00
gtgt->AddSource(fname);
2016-07-09 11:21:54 +02:00
}
2009-10-04 10:30:41 +03:00
}
2009-05-01 17:43:35 +03:00
bool cmGlobalXCodeGenerator::IsHeaderFile(cmSourceFile* sf)
{
2020-08-30 11:54:41 +02:00
return cm::contains(this->CMakeInstance->GetHeaderExtensions(),
sf->GetExtension());
2009-05-01 17:43:35 +03:00
}
2021-09-14 00:13:48 +02:00
cmXCodeObject* cmGlobalXCodeGenerator::CreateLegacyRunScriptBuildPhase(
2016-07-09 11:21:54 +02:00
const char* name, const char* name2, cmGeneratorTarget* target,
const std::vector<cmCustomCommand>& commands)
{
2018-01-26 17:06:56 +01:00
if (commands.empty() && strcmp(name, "CMake ReRun") != 0) {
return nullptr;
2016-07-09 11:21:54 +02:00
}
2010-11-13 01:00:53 +02:00
cmXCodeObject* buildPhase =
this->CreateObject(cmXCodeObject::PBXShellScriptBuildPhase);
buildPhase->AddAttribute("buildActionMask",
this->CreateString("2147483647"));
cmXCodeObject* buildFiles = this->CreateObject(cmXCodeObject::OBJECT_LIST);
buildPhase->AddAttribute("files", buildFiles);
2016-07-09 11:21:54 +02:00
buildPhase->AddAttribute("name", this->CreateString(name));
2010-11-13 01:00:53 +02:00
buildPhase->AddAttribute("runOnlyForDeploymentPostprocessing",
this->CreateString("0"));
2016-07-09 11:21:54 +02:00
buildPhase->AddAttribute("shellPath", this->CreateString("/bin/sh"));
this->AddCommandsToBuildPhase(buildPhase, target, commands, name2);
return buildPhase;
}
2016-07-09 11:21:54 +02:00
void cmGlobalXCodeGenerator::CreateCustomCommands(
cmXCodeObject* buildPhases, cmXCodeObject* sourceBuildPhase,
cmXCodeObject* headerBuildPhase, cmXCodeObject* resourceBuildPhase,
2020-02-01 23:06:01 +01:00
std::vector<cmXCodeObject*> const& contentBuildPhases,
2016-07-09 11:21:54 +02:00
cmXCodeObject* frameworkBuildPhase, cmGeneratorTarget* gtgt)
{
2016-07-09 11:21:54 +02:00
std::vector<cmCustomCommand> const& prebuild = gtgt->GetPreBuildCommands();
std::vector<cmCustomCommand> const& prelink = gtgt->GetPreLinkCommands();
std::vector<cmCustomCommand> postbuild = gtgt->GetPostBuildCommands();
2017-04-14 19:02:05 +02:00
if (gtgt->GetType() == cmStateEnums::SHARED_LIBRARY &&
2016-07-09 11:21:54 +02:00
!gtgt->IsFrameworkOnApple()) {
2020-02-01 23:06:01 +01:00
std::string str_file = cmStrCat("$<TARGET_FILE:", gtgt->GetName(), '>');
std::string str_so_file =
cmStrCat("$<TARGET_SONAME_FILE:", gtgt->GetName(), '>');
std::string str_link_file =
2023-07-02 19:51:09 +02:00
cmStrCat("$<TARGET_LINKER_LIBRARY_FILE:", gtgt->GetName(), '>');
2020-02-01 23:06:01 +01:00
cmCustomCommandLines cmd = cmMakeSingleCommandLine(
{ cmSystemTools::GetCMakeCommand(), "-E", "cmake_symlink_library",
str_file, str_so_file, str_link_file });
2013-11-03 12:27:13 +02:00
2022-03-29 21:10:50 +02:00
cmCustomCommand command;
command.SetCommandLines(cmd);
command.SetComment("Creating symlinks");
command.SetWorkingDirectory("");
command.SetBacktrace(this->CurrentMakefile->GetBacktrace());
command.SetStdPipesUTF8(true);
2013-11-03 12:27:13 +02:00
2020-08-30 11:54:41 +02:00
postbuild.push_back(std::move(command));
2016-07-09 11:21:54 +02:00
}
2013-11-03 12:27:13 +02:00
2023-07-02 19:51:09 +02:00
if (gtgt->HasImportLibrary("") && !gtgt->IsFrameworkOnApple()) {
// create symbolic links for .tbd file
std::string file = cmStrCat("$<TARGET_IMPORT_FILE:", gtgt->GetName(), '>');
std::string soFile =
cmStrCat("$<TARGET_SONAME_IMPORT_FILE:", gtgt->GetName(), '>');
std::string linkFile =
cmStrCat("$<TARGET_LINKER_IMPORT_FILE:", gtgt->GetName(), '>');
cmCustomCommandLines symlink_command = cmMakeSingleCommandLine(
{ cmSystemTools::GetCMakeCommand(), "-E", "cmake_symlink_library", file,
soFile, linkFile });
cmCustomCommand command;
command.SetCommandLines(symlink_command);
command.SetComment("Creating import symlinks");
command.SetWorkingDirectory("");
command.SetBacktrace(this->CurrentMakefile->GetBacktrace());
command.SetStdPipesUTF8(true);
postbuild.push_back(std::move(command));
}
2021-09-14 00:13:48 +02:00
cmXCodeObject* legacyCustomCommandsBuildPhase = nullptr;
cmXCodeObject* preBuildPhase = nullptr;
cmXCodeObject* preLinkPhase = nullptr;
cmXCodeObject* postBuildPhase = nullptr;
if (this->XcodeBuildSystem >= BuildSystem::Twelve) {
// create prebuild phase
preBuildPhase =
this->CreateRunScriptBuildPhase("CMake PreBuild Rules", gtgt, prebuild);
// create prelink phase
preLinkPhase =
this->CreateRunScriptBuildPhase("CMake PreLink Rules", gtgt, prelink);
// create postbuild phase
postBuildPhase = this->CreateRunScriptBuildPhase("CMake PostBuild Rules",
gtgt, postbuild);
} else {
std::vector<cmSourceFile*> classes;
if (!gtgt->GetConfigCommonSourceFilesForXcode(classes)) {
return;
}
// add all the sources
std::vector<cmCustomCommand> commands;
auto& visited = this->CommandsVisited[gtgt];
for (auto sourceFile : classes) {
if (sourceFile->GetCustomCommand() &&
visited.insert(sourceFile).second) {
commands.push_back(*sourceFile->GetCustomCommand());
}
}
// create custom commands phase
legacyCustomCommandsBuildPhase = this->CreateLegacyRunScriptBuildPhase(
"CMake Rules", "cmakeRulesBuildPhase", gtgt, commands);
// create prebuild phase
preBuildPhase = this->CreateLegacyRunScriptBuildPhase(
"CMake PreBuild Rules", "preBuildCommands", gtgt, prebuild);
// create prelink phase
preLinkPhase = this->CreateLegacyRunScriptBuildPhase(
"CMake PreLink Rules", "preLinkCommands", gtgt, prelink);
// create postbuild phase
postBuildPhase = this->CreateLegacyRunScriptBuildPhase(
"CMake PostBuild Rules", "postBuildPhase", gtgt, postbuild);
2016-07-09 11:21:54 +02:00
}
// The order here is the order they will be built in.
// The order "headers, resources, sources" mimics a native project generated
// from an xcode template...
//
2016-07-09 11:21:54 +02:00
if (preBuildPhase) {
buildPhases->AddObject(preBuildPhase);
2016-07-09 11:21:54 +02:00
}
2021-09-14 00:13:48 +02:00
if (legacyCustomCommandsBuildPhase) {
buildPhases->AddObject(legacyCustomCommandsBuildPhase);
}
if (this->XcodeBuildSystem >= BuildSystem::Twelve) {
this->CreateRunScriptBuildPhases(buildPhases, gtgt);
2016-07-09 11:21:54 +02:00
}
if (headerBuildPhase) {
buildPhases->AddObject(headerBuildPhase);
2016-07-09 11:21:54 +02:00
}
if (resourceBuildPhase) {
buildPhases->AddObject(resourceBuildPhase);
2016-07-09 11:21:54 +02:00
}
2018-04-23 21:13:27 +02:00
for (auto obj : contentBuildPhases) {
buildPhases->AddObject(obj);
2016-07-09 11:21:54 +02:00
}
if (sourceBuildPhase) {
buildPhases->AddObject(sourceBuildPhase);
2016-07-09 11:21:54 +02:00
}
if (preLinkPhase) {
buildPhases->AddObject(preLinkPhase);
2016-07-09 11:21:54 +02:00
}
if (frameworkBuildPhase) {
buildPhases->AddObject(frameworkBuildPhase);
2016-07-09 11:21:54 +02:00
}
2021-09-14 00:13:48 +02:00
// When this build phase is present, it must be last. More build phases may
// be added later for embedding things and they will insert themselves just
// before this last build phase.
2016-07-09 11:21:54 +02:00
if (postBuildPhase) {
buildPhases->AddObject(postBuildPhase);
2016-07-09 11:21:54 +02:00
}
}
2021-09-14 00:13:48 +02:00
void cmGlobalXCodeGenerator::CreateRunScriptBuildPhases(
cmXCodeObject* buildPhases, cmGeneratorTarget const* gt)
{
std::vector<cmSourceFile*> sources;
if (!gt->GetConfigCommonSourceFilesForXcode(sources)) {
return;
}
auto& visited = this->CommandsVisited[gt];
for (auto sf : sources) {
this->CreateRunScriptBuildPhases(buildPhases, sf, gt, visited);
}
}
void cmGlobalXCodeGenerator::CreateRunScriptBuildPhases(
cmXCodeObject* buildPhases, cmSourceFile const* sf,
cmGeneratorTarget const* gt, std::set<cmSourceFile const*>& visited)
{
cmCustomCommand const* cc = sf->GetCustomCommand();
if (cc && visited.insert(sf).second) {
this->CustomCommandRoots[sf].insert(gt);
if (std::vector<cmSourceFile*> const* depends = gt->GetSourceDepends(sf)) {
for (cmSourceFile const* di : *depends) {
this->CreateRunScriptBuildPhases(buildPhases, di, gt, visited);
}
}
cmXCodeObject* buildPhase = this->CreateRunScriptBuildPhase(sf, gt, *cc);
buildPhases->AddObject(buildPhase);
}
}
cmXCodeObject* cmGlobalXCodeGenerator::CreateRunScriptBuildPhase(
cmSourceFile const* sf, cmGeneratorTarget const* gt,
cmCustomCommand const& cc)
{
std::set<std::string> allConfigInputs;
std::set<std::string> allConfigOutputs;
cmXCodeObject* buildPhase =
this->CreateObject(cmXCodeObject::PBXShellScriptBuildPhase,
cmStrCat(gt->GetName(), ':', sf->GetFullPath()));
auto depfilesDirectory = cmStrCat(
gt->GetLocalGenerator()->GetCurrentBinaryDirectory(), "/CMakeFiles/d/");
auto depfilesPrefix = cmStrCat(depfilesDirectory, buildPhase->GetId(), ".");
std::string shellScript = "set -e\n";
for (std::string const& configName : this->CurrentConfigurationTypes) {
cmCustomCommandGenerator ccg(
cc, configName, this->CurrentLocalGenerator, true, {},
[&depfilesPrefix](const std::string& config, const std::string&)
-> std::string { return cmStrCat(depfilesPrefix, config, ".d"); });
std::vector<std::string> realDepends;
realDepends.reserve(ccg.GetDepends().size());
for (auto const& d : ccg.GetDepends()) {
std::string dep;
if (this->CurrentLocalGenerator->GetRealDependency(d, configName, dep)) {
realDepends.emplace_back(std::move(dep));
}
}
allConfigInputs.insert(realDepends.begin(), realDepends.end());
allConfigOutputs.insert(ccg.GetByproducts().begin(),
ccg.GetByproducts().end());
allConfigOutputs.insert(ccg.GetOutputs().begin(), ccg.GetOutputs().end());
shellScript =
cmStrCat(shellScript, R"(if test "$CONFIGURATION" = ")", configName,
"\"; then :\n", this->ConstructScript(ccg), "fi\n");
}
if (!cc.GetDepfile().empty()) {
buildPhase->AddAttribute(
"dependencyFile",
this->CreateString(cmStrCat(depfilesDirectory, buildPhase->GetId(),
".$(CONFIGURATION).d")));
// to avoid spurious errors during first build, create empty dependency
// files
cmSystemTools::MakeDirectory(depfilesDirectory);
for (std::string const& configName : this->CurrentConfigurationTypes) {
auto file = cmStrCat(depfilesPrefix, configName, ".d");
if (!cmSystemTools::FileExists(file)) {
cmSystemTools::Touch(file, true);
}
}
}
buildPhase->AddAttribute("buildActionMask",
this->CreateString("2147483647"));
cmXCodeObject* buildFiles = this->CreateObject(cmXCodeObject::OBJECT_LIST);
buildPhase->AddAttribute("files", buildFiles);
{
std::string name;
if (!allConfigOutputs.empty()) {
name = cmStrCat("Generate ",
this->RelativeToBinary(*allConfigOutputs.begin()));
} else {
name = sf->GetLocation().GetName();
}
buildPhase->AddAttribute("name", this->CreateString(name));
}
buildPhase->AddAttribute("runOnlyForDeploymentPostprocessing",
this->CreateString("0"));
buildPhase->AddAttribute("shellPath", this->CreateString("/bin/sh"));
buildPhase->AddAttribute("shellScript", this->CreateString(shellScript));
buildPhase->AddAttribute("showEnvVarsInLog", this->CreateString("0"));
bool symbolic = false;
{
cmXCodeObject* inputPaths = this->CreateObject(cmXCodeObject::OBJECT_LIST);
for (std::string const& i : allConfigInputs) {
inputPaths->AddUniqueObject(this->CreateString(i));
if (!symbolic) {
if (cmSourceFile* isf =
gt->GetLocalGenerator()->GetMakefile()->GetSource(
i, cmSourceFileLocationKind::Known)) {
symbolic = isf->GetPropertyAsBool("SYMBOLIC");
}
}
}
buildPhase->AddAttribute("inputPaths", inputPaths);
}
{
cmXCodeObject* outputPaths =
this->CreateObject(cmXCodeObject::OBJECT_LIST);
for (std::string const& o : allConfigOutputs) {
outputPaths->AddUniqueObject(this->CreateString(o));
if (!symbolic) {
if (cmSourceFile* osf =
gt->GetLocalGenerator()->GetMakefile()->GetSource(
o, cmSourceFileLocationKind::Known)) {
symbolic = osf->GetPropertyAsBool("SYMBOLIC");
}
}
}
buildPhase->AddAttribute("outputPaths", outputPaths);
}
if (symbolic) {
buildPhase->AddAttribute("alwaysOutOfDate", this->CreateString("1"));
}
return buildPhase;
}
cmXCodeObject* cmGlobalXCodeGenerator::CreateRunScriptBuildPhase(
std::string const& name, cmGeneratorTarget const* gt,
std::vector<cmCustomCommand> const& commands)
{
if (commands.empty()) {
return nullptr;
}
std::set<std::string> allConfigOutputs;
std::string shellScript = "set -e\n";
for (std::string const& configName : this->CurrentConfigurationTypes) {
shellScript = cmStrCat(shellScript, R"(if test "$CONFIGURATION" = ")",
configName, "\"; then :\n");
for (cmCustomCommand const& cc : commands) {
cmCustomCommandGenerator ccg(cc, configName,
this->CurrentLocalGenerator);
shellScript = cmStrCat(shellScript, this->ConstructScript(ccg));
allConfigOutputs.insert(ccg.GetByproducts().begin(),
ccg.GetByproducts().end());
}
shellScript = cmStrCat(shellScript, "fi\n");
}
cmXCodeObject* buildPhase =
this->CreateObject(cmXCodeObject::PBXShellScriptBuildPhase,
cmStrCat(gt->GetName(), ':', name));
buildPhase->AddAttribute("buildActionMask",
this->CreateString("2147483647"));
cmXCodeObject* buildFiles = this->CreateObject(cmXCodeObject::OBJECT_LIST);
buildPhase->AddAttribute("files", buildFiles);
buildPhase->AddAttribute("name", this->CreateString(name));
buildPhase->AddAttribute("runOnlyForDeploymentPostprocessing",
this->CreateString("0"));
buildPhase->AddAttribute("shellPath", this->CreateString("/bin/sh"));
buildPhase->AddAttribute("shellScript", this->CreateString(shellScript));
buildPhase->AddAttribute("showEnvVarsInLog", this->CreateString("0"));
{
cmXCodeObject* outputPaths =
this->CreateObject(cmXCodeObject::OBJECT_LIST);
for (std::string const& o : allConfigOutputs) {
outputPaths->AddUniqueObject(this->CreateString(o));
}
buildPhase->AddAttribute("outputPaths", outputPaths);
}
buildPhase->AddAttribute("alwaysOutOfDate", this->CreateString("1"));
return buildPhase;
}
namespace {
void ReplaceScriptVars(std::string& cmd)
{
cmSystemTools::ReplaceString(cmd, "$(CONFIGURATION)", "$CONFIGURATION");
cmSystemTools::ReplaceString(cmd, "$(EFFECTIVE_PLATFORM_NAME)",
"$EFFECTIVE_PLATFORM_NAME");
}
}
std::string cmGlobalXCodeGenerator::ConstructScript(
cmCustomCommandGenerator const& ccg)
{
std::string script;
cmLocalGenerator* lg = this->CurrentLocalGenerator;
std::string wd = ccg.GetWorkingDirectory();
if (wd.empty()) {
wd = lg->GetCurrentBinaryDirectory();
}
wd = lg->ConvertToOutputFormat(wd, cmOutputConverter::SHELL);
ReplaceScriptVars(wd);
script = cmStrCat(script, " cd ", wd, "\n");
for (unsigned int c = 0; c < ccg.GetNumberOfCommands(); ++c) {
std::string cmd = ccg.GetCommand(c);
if (cmd.empty()) {
continue;
}
cmSystemTools::ReplaceString(cmd, "/./", "/");
cmd = lg->ConvertToOutputFormat(cmd, cmOutputConverter::SHELL);
ccg.AppendArguments(c, cmd);
ReplaceScriptVars(cmd);
script = cmStrCat(script, " ", cmd, '\n');
}
return script;
}
2013-03-16 19:13:01 +02:00
// This function removes each occurrence of the flag and returns the last one
2012-02-18 12:40:36 +02:00
// (i.e., the dominant flag in GCC)
std::string cmGlobalXCodeGenerator::ExtractFlag(const char* flag,
std::string& flags)
{
std::string retFlag;
2013-03-16 19:13:01 +02:00
std::string::size_type lastOccurancePos = flags.rfind(flag);
2012-02-18 12:40:36 +02:00
bool saved = false;
2017-07-20 19:35:53 +02:00
while (lastOccurancePos != std::string::npos) {
2016-07-09 11:21:54 +02:00
// increment pos, we use lastOccurancePos to reduce search space on next
// inc
2013-03-16 19:13:01 +02:00
std::string::size_type pos = lastOccurancePos;
2016-07-09 11:21:54 +02:00
if (pos == 0 || flags[pos - 1] == ' ') {
while (pos < flags.size() && flags[pos] != ' ') {
if (!saved) {
2012-02-18 12:40:36 +02:00
retFlag += flags[pos];
2016-07-09 11:21:54 +02:00
}
2012-02-18 12:40:36 +02:00
flags[pos] = ' ';
pos++;
2013-03-16 19:13:01 +02:00
}
2016-07-09 11:21:54 +02:00
saved = true;
}
2016-07-09 11:21:54 +02:00
// decrement lastOccurancePos while making sure we don't loop around
// and become a very large positive number since size_type is unsigned
lastOccurancePos = lastOccurancePos == 0 ? 0 : lastOccurancePos - 1;
lastOccurancePos = flags.rfind(flag, lastOccurancePos);
}
return retFlag;
}
2016-03-13 13:35:51 +01:00
// This function removes each matching occurrence of the expression and
// returns the last one (i.e., the dominant flag in GCC)
std::string cmGlobalXCodeGenerator::ExtractFlagRegex(const char* exp,
int matchIndex,
std::string& flags)
{
std::string retFlag;
cmsys::RegularExpression regex(exp);
assert(regex.is_valid());
2016-07-09 11:21:54 +02:00
if (!regex.is_valid()) {
2016-03-13 13:35:51 +01:00
return retFlag;
2016-07-09 11:21:54 +02:00
}
2016-03-13 13:35:51 +01:00
std::string::size_type offset = 0;
2019-11-11 23:01:05 +01:00
while (regex.find(&flags[offset])) {
2016-03-13 13:35:51 +01:00
const std::string::size_type startPos = offset + regex.start(matchIndex);
const std::string::size_type endPos = offset + regex.end(matchIndex);
const std::string::size_type size = endPos - startPos;
offset = startPos + 1;
retFlag.assign(flags, startPos, size);
flags.replace(startPos, size, size, ' ');
2016-07-09 11:21:54 +02:00
}
2016-03-13 13:35:51 +01:00
return retFlag;
}
2016-07-09 11:21:54 +02:00
//----------------------------------------------------------------------------
2016-03-13 13:35:51 +01:00
// This function strips off Xcode attributes that do not target the current
// configuration
2016-07-09 11:21:54 +02:00
void cmGlobalXCodeGenerator::FilterConfigurationAttribute(
std::string const& configName, std::string& attribute)
2016-03-13 13:35:51 +01:00
{
// Handle [variant=<config>] condition explicitly here.
std::string::size_type beginVariant = attribute.find("[variant=");
2016-07-09 11:21:54 +02:00
if (beginVariant == std::string::npos) {
2016-03-13 13:35:51 +01:00
// There is no variant in this attribute.
return;
2016-07-09 11:21:54 +02:00
}
2016-03-13 13:35:51 +01:00
2018-01-26 17:06:56 +01:00
std::string::size_type endVariant = attribute.find(']', beginVariant + 9);
2016-07-09 11:21:54 +02:00
if (endVariant == std::string::npos) {
2016-03-13 13:35:51 +01:00
// There is no terminating bracket.
return;
2016-07-09 11:21:54 +02:00
}
2016-03-13 13:35:51 +01:00
// Compare the variant to the configuration.
std::string variant =
2016-07-09 11:21:54 +02:00
attribute.substr(beginVariant + 9, endVariant - beginVariant - 9);
if (variant == configName) {
2016-03-13 13:35:51 +01:00
// The variant matches the configuration so use this
// attribute but drop the [variant=<config>] condition.
2016-07-09 11:21:54 +02:00
attribute.erase(beginVariant, endVariant - beginVariant + 1);
} else {
2016-03-13 13:35:51 +01:00
// The variant does not match the configuration so
// do not use this attribute.
attribute.clear();
2016-07-09 11:21:54 +02:00
}
2016-03-13 13:35:51 +01:00
}
2016-07-09 11:21:54 +02:00
void cmGlobalXCodeGenerator::AddCommandsToBuildPhase(
cmXCodeObject* buildphase, cmGeneratorTarget* target,
std::vector<cmCustomCommand> const& commands, const char* name)
{
2020-02-01 23:06:01 +01:00
std::string dir = cmStrCat(
this->CurrentLocalGenerator->GetCurrentBinaryDirectory(), "/CMakeScripts");
2019-11-11 23:01:05 +01:00
cmSystemTools::MakeDirectory(dir);
2020-02-01 23:06:01 +01:00
std::string makefile =
cmStrCat(dir, '/', target->GetName(), '_', name, ".make");
2010-11-13 01:00:53 +02:00
2018-04-23 21:13:27 +02:00
for (const auto& currentConfig : this->CurrentConfigurationTypes) {
2016-07-09 11:21:54 +02:00
this->CreateCustomRulesMakefile(makefile.c_str(), target, commands,
2018-04-23 21:13:27 +02:00
currentConfig);
2016-07-09 11:21:54 +02:00
}
2010-11-13 01:00:53 +02:00
2016-03-13 13:35:51 +01:00
std::string cdir = this->CurrentLocalGenerator->GetCurrentBinaryDirectory();
2018-08-09 18:06:22 +02:00
cdir = this->ConvertToRelativeForMake(cdir);
2020-02-01 23:06:01 +01:00
std::string makecmd =
cmStrCat("make -C ", cdir, " -f ",
this->ConvertToRelativeForMake((makefile + "$CONFIGURATION")),
" OBJDIR=$(basename \"$OBJECT_FILE_DIR_normal\") all");
2016-07-09 11:21:54 +02:00
buildphase->AddAttribute("shellScript", this->CreateString(makecmd));
buildphase->AddAttribute("showEnvVarsInLog", this->CreateString("0"));
}
2016-07-09 11:21:54 +02:00
void cmGlobalXCodeGenerator::CreateCustomRulesMakefile(
const char* makefileBasename, cmGeneratorTarget* target,
std::vector<cmCustomCommand> const& commands, const std::string& configName)
{
2020-02-01 23:06:01 +01:00
std::string makefileName = cmStrCat(makefileBasename, configName);
2019-11-11 23:01:05 +01:00
cmGeneratedFileStream makefileStream(makefileName);
2016-07-09 11:21:54 +02:00
if (!makefileStream) {
return;
2016-07-09 11:21:54 +02:00
}
makefileStream.SetCopyIfDifferent(true);
makefileStream << "# Generated by CMake, DO NOT EDIT\n";
2016-03-13 13:35:51 +01:00
makefileStream << "# Custom rules for " << target->GetName() << "\n";
2010-11-13 01:00:53 +02:00
2011-02-07 16:37:25 +01:00
// disable the implicit rules
2016-07-09 11:21:54 +02:00
makefileStream << ".SUFFIXES: "
<< "\n";
2011-02-07 16:37:25 +01:00
// have all depend on all outputs
makefileStream << "all: ";
2015-04-27 22:25:09 +02:00
std::map<const cmCustomCommand*, std::string> tname;
int count = 0;
2018-01-26 17:06:56 +01:00
for (auto const& command : commands) {
cmCustomCommandGenerator ccg(command, configName,
this->CurrentLocalGenerator);
2016-07-09 11:21:54 +02:00
if (ccg.GetNumberOfCommands() > 0) {
2015-04-27 22:25:09 +02:00
const std::vector<std::string>& outputs = ccg.GetOutputs();
2016-07-09 11:21:54 +02:00
if (!outputs.empty()) {
2018-01-26 17:06:56 +01:00
for (auto const& output : outputs) {
2018-08-09 18:06:22 +02:00
makefileStream << "\\\n\t" << this->ConvertToRelativeForMake(output);
}
2016-07-09 11:21:54 +02:00
} else {
2015-04-27 22:25:09 +02:00
std::ostringstream str;
2016-07-09 11:21:54 +02:00
str << "_buildpart_" << count++;
2019-11-11 23:01:05 +01:00
tname[&ccg.GetCC()] = target->GetName() + str.str();
2015-04-27 22:25:09 +02:00
makefileStream << "\\\n\t" << tname[&ccg.GetCC()];
}
}
2016-07-09 11:21:54 +02:00
}
makefileStream << "\n\n";
2021-09-14 00:13:48 +02:00
auto depfilesDirectory =
cmStrCat(target->GetLocalGenerator()->GetCurrentBinaryDirectory(),
"/CMakeFiles/d/");
2018-01-26 17:06:56 +01:00
for (auto const& command : commands) {
2021-09-14 00:13:48 +02:00
cmCustomCommandGenerator ccg(
command, configName, this->CurrentLocalGenerator, true, {},
[this, &depfilesDirectory](const std::string& config,
const std::string& file) -> std::string {
return cmStrCat(
depfilesDirectory,
this->GetObjectId(cmXCodeObject::PBXShellScriptBuildPhase, file),
".", config, ".d");
});
auto depfile = ccg.GetInternalDepfile();
if (!depfile.empty()) {
makefileStream << "include "
<< cmSystemTools::ConvertToOutputPath(depfile) << "\n\n";
cmSystemTools::MakeDirectory(depfilesDirectory);
if (!cmSystemTools::FileExists(depfile)) {
cmSystemTools::Touch(depfile, true);
}
}
std::vector<std::string> realDepends;
realDepends.reserve(ccg.GetDepends().size());
for (auto const& d : ccg.GetDepends()) {
std::string dep;
if (this->CurrentLocalGenerator->GetRealDependency(d, configName, dep)) {
realDepends.emplace_back(std::move(dep));
}
}
2016-07-09 11:21:54 +02:00
if (ccg.GetNumberOfCommands() > 0) {
makefileStream << "\n";
2015-04-27 22:25:09 +02:00
const std::vector<std::string>& outputs = ccg.GetOutputs();
2016-07-09 11:21:54 +02:00
if (!outputs.empty()) {
// There is at least one output, start the rule for it
2015-04-27 22:25:09 +02:00
const char* sep = "";
2018-01-26 17:06:56 +01:00
for (auto const& output : outputs) {
2018-08-09 18:06:22 +02:00
makefileStream << sep << this->ConvertToRelativeForMake(output);
2015-04-27 22:25:09 +02:00
sep = " ";
}
2016-07-09 11:21:54 +02:00
makefileStream << ": ";
} else {
// There are no outputs. Use the generated force rule name.
2015-04-27 22:25:09 +02:00
makefileStream << tname[&ccg.GetCC()] << ": ";
2016-07-09 11:21:54 +02:00
}
2021-09-14 00:13:48 +02:00
for (auto const& dep : realDepends) {
makefileStream << "\\\n" << this->ConvertToRelativeForMake(dep);
2016-07-09 11:21:54 +02:00
}
makefileStream << "\n";
2023-05-23 16:38:00 +02:00
if (cm::optional<std::string> comment = ccg.GetComment()) {
2020-02-01 23:06:01 +01:00
std::string echo_cmd =
cmStrCat("echo ",
(this->CurrentLocalGenerator->EscapeForShell(
2023-05-23 16:38:00 +02:00
*comment, ccg.GetCC().GetEscapeAllowMakeVars())));
2016-10-30 18:24:19 +01:00
makefileStream << "\t" << echo_cmd << "\n";
2016-07-09 11:21:54 +02:00
}
// Add each command line to the set of commands.
2016-07-09 11:21:54 +02:00
for (unsigned int c = 0; c < ccg.GetNumberOfCommands(); ++c) {
// Build the command line in a single string.
2011-01-16 11:35:12 +01:00
std::string cmd2 = ccg.GetCommand(c);
cmSystemTools::ReplaceString(cmd2, "/./", "/");
2018-08-09 18:06:22 +02:00
cmd2 = this->ConvertToRelativeForMake(cmd2);
std::string cmd;
2015-04-27 22:25:09 +02:00
std::string wd = ccg.GetWorkingDirectory();
2016-07-09 11:21:54 +02:00
if (!wd.empty()) {
cmd += "cd ";
2018-08-09 18:06:22 +02:00
cmd += this->ConvertToRelativeForMake(wd);
cmd += " && ";
2016-07-09 11:21:54 +02:00
}
cmd += cmd2;
2011-01-16 11:35:12 +01:00
ccg.AppendArguments(c, cmd);
2016-10-30 18:24:19 +01:00
makefileStream << "\t" << cmd << "\n";
}
2021-09-14 00:13:48 +02:00
// Symbolic inputs are not expected to exist, so add dummy rules.
for (auto const& dep : realDepends) {
if (cmSourceFile* dsf =
target->GetLocalGenerator()->GetMakefile()->GetSource(
dep, cmSourceFileLocationKind::Known)) {
if (dsf->GetPropertyAsBool("SYMBOLIC")) {
makefileStream << this->ConvertToRelativeForMake(dep) << ":\n";
}
}
}
}
2016-07-09 11:21:54 +02:00
}
}
2019-11-11 23:01:05 +01:00
void cmGlobalXCodeGenerator::AddPositionIndependentLinkAttribute(
cmGeneratorTarget* target, cmXCodeObject* buildSettings,
const std::string& configName)
{
// For now, only EXECUTABLE is concerned
if (target->GetType() != cmStateEnums::EXECUTABLE) {
return;
}
const char* PICValue = target->GetLinkPIEProperty(configName);
if (PICValue == nullptr) {
// POSITION_INDEPENDENT_CODE is not set
return;
}
buildSettings->AddAttribute(
2020-02-01 23:06:01 +01:00
"LD_NO_PIE", this->CreateString(cmIsOn(PICValue) ? "NO" : "YES"));
2019-11-11 23:01:05 +01:00
}
2016-03-13 13:35:51 +01:00
void cmGlobalXCodeGenerator::CreateBuildSettings(cmGeneratorTarget* gtgt,
2016-07-09 11:21:54 +02:00
cmXCodeObject* buildSettings,
const std::string& configName)
{
2021-09-14 00:13:48 +02:00
if (!gtgt->IsInBuildSystem()) {
2014-08-03 19:52:23 +02:00
return;
2016-07-09 11:21:54 +02:00
}
2014-08-03 19:52:23 +02:00
std::string defFlags;
2017-04-14 19:02:05 +02:00
bool shared = ((gtgt->GetType() == cmStateEnums::SHARED_LIBRARY) ||
(gtgt->GetType() == cmStateEnums::MODULE_LIBRARY));
bool binary = ((gtgt->GetType() == cmStateEnums::OBJECT_LIBRARY) ||
(gtgt->GetType() == cmStateEnums::STATIC_LIBRARY) ||
(gtgt->GetType() == cmStateEnums::EXECUTABLE) || shared);
2015-08-17 11:37:30 +02:00
// Compute the compilation flags for each language.
std::set<std::string> languages;
2015-11-17 17:22:37 +01:00
gtgt->GetLanguages(languages, configName);
2015-08-17 11:37:30 +02:00
std::map<std::string, std::string> cflags;
2018-01-26 17:06:56 +01:00
for (auto const& lang : languages) {
2015-08-17 11:37:30 +02:00
std::string& flags = cflags[lang];
// Add language-specific flags.
2022-11-16 20:14:03 +01:00
this->CurrentLocalGenerator->AddLanguageFlags(
flags, gtgt, cmBuildStep::Compile, lang, configName);
2010-11-13 01:00:53 +02:00
2019-11-11 23:01:05 +01:00
if (gtgt->IsIPOEnabled(lang, configName)) {
this->CurrentLocalGenerator->AppendFeatureOptions(flags, lang, "IPO");
}
// Add shared-library flags if needed.
2016-07-09 11:21:54 +02:00
this->CurrentLocalGenerator->AddCMP0018Flags(flags, gtgt, lang,
configName);
2013-11-03 12:27:13 +02:00
2016-07-09 11:21:54 +02:00
this->CurrentLocalGenerator->AddVisibilityPresetFlags(flags, gtgt, lang);
2013-11-03 12:27:13 +02:00
2016-07-09 11:21:54 +02:00
this->CurrentLocalGenerator->AddCompileOptions(flags, gtgt, lang,
configName);
}
2015-08-17 11:37:30 +02:00
2015-11-17 17:22:37 +01:00
std::string llang = gtgt->GetLinkerLanguage(configName);
2016-07-09 11:21:54 +02:00
if (binary && llang.empty()) {
cmSystemTools::Error(
2019-11-11 23:01:05 +01:00
"CMake can not determine linker language for target: " +
gtgt->GetName());
2010-11-13 01:00:53 +02:00
return;
2016-07-09 11:21:54 +02:00
}
2022-11-16 20:14:03 +01:00
// Choose a language to use for target-wide preprocessor definitions.
static const char* ppLangs[] = { "CXX", "C", "OBJCXX", "OBJC" };
std::string langForPreprocessorDefinitions;
if (cm::contains(ppLangs, llang)) {
langForPreprocessorDefinitions = llang;
} else {
for (const char* l : ppLangs) {
if (languages.count(l)) {
langForPreprocessorDefinitions = l;
break;
}
}
}
2017-07-20 19:35:53 +02:00
if (gtgt->IsIPOEnabled(llang, configName)) {
const char* ltoValue =
this->CurrentMakefile->IsOn("_CMAKE_LTO_THIN") ? "YES_THIN" : "YES";
buildSettings->AddAttribute("LLVM_LTO", this->CreateString(ltoValue));
}
2019-11-11 23:01:05 +01:00
// Handle PIE linker configuration
this->AddPositionIndependentLinkAttribute(gtgt, buildSettings, configName);
// Add define flags
2016-07-09 11:21:54 +02:00
this->CurrentLocalGenerator->AppendFlags(
defFlags, this->CurrentMakefile->GetDefineFlags());
// Add preprocessor definitions for this target and configuration.
2017-07-20 19:35:53 +02:00
BuildObjectListOrString ppDefs(this, true);
2022-11-16 20:14:03 +01:00
this->AppendDefines(
ppDefs, "CMAKE_INTDIR=\"$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)\"");
2019-11-11 23:01:05 +01:00
if (const std::string* exportMacro = gtgt->GetExportMacro()) {
// Add the export symbol definition for shared library objects.
2019-11-11 23:01:05 +01:00
this->AppendDefines(ppDefs, exportMacro->c_str());
2016-07-09 11:21:54 +02:00
}
2013-11-03 12:27:13 +02:00
std::vector<std::string> targetDefines;
2022-11-16 20:14:03 +01:00
if (!langForPreprocessorDefinitions.empty()) {
2018-04-23 21:13:27 +02:00
gtgt->GetCompileDefinitions(targetDefines, configName,
2022-11-16 20:14:03 +01:00
langForPreprocessorDefinitions);
2018-04-23 21:13:27 +02:00
}
2013-11-03 12:27:13 +02:00
this->AppendDefines(ppDefs, targetDefines);
2016-07-09 11:21:54 +02:00
buildSettings->AddAttribute("GCC_PREPROCESSOR_DEFINITIONS",
ppDefs.CreateList());
2022-11-16 20:14:03 +01:00
if (languages.count("Swift")) {
// Swift uses a separate attribute for definitions.
std::vector<std::string> targetSwiftDefines;
gtgt->GetCompileDefinitions(targetSwiftDefines, configName, "Swift");
// Remove the '=value' parts, as Swift does not support them.
std::for_each(targetSwiftDefines.begin(), targetSwiftDefines.end(),
[](std::string& def) {
std::string::size_type pos = def.find('=');
if (pos != std::string::npos) {
def.erase(pos);
}
});
if (this->XcodeVersion < 80) {
std::string defineString;
std::set<std::string> defines(targetSwiftDefines.begin(),
targetSwiftDefines.end());
this->CurrentLocalGenerator->JoinDefines(defines, defineString, "Swift");
cflags["Swift"] += " " + defineString;
} else {
BuildObjectListOrString swiftDefs(this, true);
this->AppendDefines(swiftDefs, targetSwiftDefines);
buildSettings->AddAttribute("SWIFT_ACTIVE_COMPILATION_CONDITIONS",
swiftDefs.CreateList());
}
}
2013-11-03 12:27:13 +02:00
std::string extraLinkOptionsVar;
std::string extraLinkOptions;
2017-04-14 19:02:05 +02:00
if (gtgt->GetType() == cmStateEnums::EXECUTABLE) {
2013-11-03 12:27:13 +02:00
extraLinkOptionsVar = "CMAKE_EXE_LINKER_FLAGS";
2017-04-14 19:02:05 +02:00
} else if (gtgt->GetType() == cmStateEnums::SHARED_LIBRARY) {
2013-11-03 12:27:13 +02:00
extraLinkOptionsVar = "CMAKE_SHARED_LINKER_FLAGS";
2017-04-14 19:02:05 +02:00
} else if (gtgt->GetType() == cmStateEnums::MODULE_LIBRARY) {
2013-11-03 12:27:13 +02:00
extraLinkOptionsVar = "CMAKE_MODULE_LINKER_FLAGS";
2016-07-09 11:21:54 +02:00
}
if (!extraLinkOptionsVar.empty()) {
this->CurrentLocalGenerator->AddConfigVariableFlags(
2016-10-30 18:24:19 +01:00
extraLinkOptions, extraLinkOptionsVar, configName);
2016-07-09 11:21:54 +02:00
}
2010-06-23 01:18:35 +03:00
2017-04-14 19:02:05 +02:00
if (gtgt->GetType() == cmStateEnums::OBJECT_LIBRARY ||
gtgt->GetType() == cmStateEnums::STATIC_LIBRARY) {
2016-07-09 11:21:54 +02:00
this->CurrentLocalGenerator->GetStaticLibraryFlags(
2020-08-30 11:54:41 +02:00
extraLinkOptions, configName, llang, gtgt);
2016-07-09 11:21:54 +02:00
} else {
2021-11-20 13:41:27 +01:00
cmValue targetLinkFlags = gtgt->GetProperty("LINK_FLAGS");
2016-07-09 11:21:54 +02:00
if (targetLinkFlags) {
this->CurrentLocalGenerator->AppendFlags(extraLinkOptions,
2020-08-30 11:54:41 +02:00
*targetLinkFlags);
2016-07-09 11:21:54 +02:00
}
if (!configName.empty()) {
2020-02-01 23:06:01 +01:00
std::string linkFlagsVar =
cmStrCat("LINK_FLAGS_", cmSystemTools::UpperCase(configName));
2021-11-20 13:41:27 +01:00
if (cmValue linkFlags = gtgt->GetProperty(linkFlagsVar)) {
2020-08-30 11:54:41 +02:00
this->CurrentLocalGenerator->AppendFlags(extraLinkOptions, *linkFlags);
2009-11-14 01:56:15 +02:00
}
}
2018-10-28 12:09:07 +01:00
std::vector<std::string> opts;
gtgt->GetLinkOptions(opts, configName, llang);
// LINK_OPTIONS are escaped.
this->CurrentLocalGenerator->AppendCompileOptions(extraLinkOptions, opts);
2016-07-09 11:21:54 +02:00
}
2010-03-17 14:00:29 +02:00
// Set target-specific architectures.
2023-07-02 19:51:09 +02:00
std::vector<std::string> archs =
gtgt->GetAppleArchs(configName, cm::nullopt);
2013-03-16 19:13:01 +02:00
2016-07-09 11:21:54 +02:00
if (!archs.empty()) {
2010-03-17 14:00:29 +02:00
// Enable ARCHS attribute.
2016-07-09 11:21:54 +02:00
buildSettings->AddAttribute("ONLY_ACTIVE_ARCH", this->CreateString("NO"));
2010-03-17 14:00:29 +02:00
// Store ARCHS value.
2016-07-09 11:21:54 +02:00
if (archs.size() == 1) {
buildSettings->AddAttribute("ARCHS", this->CreateString(archs[0]));
} else {
2010-03-17 14:00:29 +02:00
cmXCodeObject* archObjects =
this->CreateObject(cmXCodeObject::OBJECT_LIST);
2018-01-26 17:06:56 +01:00
for (auto& arch : archs) {
archObjects->AddObject(this->CreateString(arch));
2010-03-17 14:00:29 +02:00
}
2016-07-09 11:21:54 +02:00
buildSettings->AddAttribute("ARCHS", archObjects);
2010-03-17 14:00:29 +02:00
}
2016-07-09 11:21:54 +02:00
}
2010-03-17 14:00:29 +02:00
// Get the product name components.
2023-05-23 16:38:00 +02:00
cmGeneratorTarget::NameComponents const& components =
gtgt->GetFullNameComponents(configName);
2021-11-20 13:41:27 +01:00
cmValue version = gtgt->GetProperty("VERSION");
cmValue soversion = gtgt->GetProperty("SOVERSION");
2016-07-09 11:21:54 +02:00
if (!gtgt->HasSOName(configName) || gtgt->IsFrameworkOnApple()) {
2018-01-26 17:06:56 +01:00
version = nullptr;
soversion = nullptr;
2016-07-09 11:21:54 +02:00
}
if (version && !soversion) {
2013-11-03 12:27:13 +02:00
soversion = version;
2016-07-09 11:21:54 +02:00
}
if (!version && soversion) {
2013-11-03 12:27:13 +02:00
version = soversion;
2016-07-09 11:21:54 +02:00
}
2013-11-03 12:27:13 +02:00
2023-05-23 16:38:00 +02:00
std::string realName = components.base;
std::string soName = components.base;
2016-07-09 11:21:54 +02:00
if (version && soversion) {
2013-11-03 12:27:13 +02:00
realName += ".";
2020-08-30 11:54:41 +02:00
realName += *version;
2013-11-03 12:27:13 +02:00
soName += ".";
2020-08-30 11:54:41 +02:00
soName += *soversion;
2016-07-09 11:21:54 +02:00
}
2013-11-03 12:27:13 +02:00
2022-11-16 20:14:03 +01:00
if (gtgt->CanCompileSources()) {
std::string const tmpDir =
this->GetTargetTempDir(gtgt, this->GetCMakeCFGIntDir());
buildSettings->AddAttribute("TARGET_TEMP_DIR", this->CreateString(tmpDir));
std::string outDir;
if (gtgt->GetType() == cmStateEnums::OBJECT_LIBRARY) {
// We cannot suppress the archive, so hide it with intermediate files.
outDir = tmpDir;
} else {
outDir = gtgt->GetDirectory(configName);
}
buildSettings->AddAttribute("CONFIGURATION_BUILD_DIR",
this->CreateString(outDir));
}
// Set attributes to specify the proper name for the target.
2016-03-13 13:35:51 +01:00
std::string pndir = this->CurrentLocalGenerator->GetCurrentBinaryDirectory();
2017-04-14 19:02:05 +02:00
if (gtgt->GetType() == cmStateEnums::STATIC_LIBRARY ||
gtgt->GetType() == cmStateEnums::SHARED_LIBRARY ||
gtgt->GetType() == cmStateEnums::MODULE_LIBRARY ||
gtgt->GetType() == cmStateEnums::EXECUTABLE) {
2023-05-23 16:38:00 +02:00
std::string prefix = components.prefix;
2016-07-09 11:21:54 +02:00
if (gtgt->IsFrameworkOnApple() || gtgt->IsCFBundleOnApple()) {
2023-05-23 16:38:00 +02:00
prefix = "";
2016-07-09 11:21:54 +02:00
}
2013-11-03 12:27:13 +02:00
2010-11-13 01:00:53 +02:00
buildSettings->AddAttribute("EXECUTABLE_PREFIX",
2023-05-23 16:38:00 +02:00
this->CreateString(prefix));
2010-11-13 01:00:53 +02:00
buildSettings->AddAttribute("EXECUTABLE_SUFFIX",
2023-05-23 16:38:00 +02:00
this->CreateString(components.suffix));
2016-07-09 11:21:54 +02:00
}
2012-04-19 19:04:21 +03:00
// Store the product name for all target types.
2016-07-09 11:21:54 +02:00
buildSettings->AddAttribute("PRODUCT_NAME", this->CreateString(realName));
// Handle settings for each target type.
2016-07-09 11:21:54 +02:00
switch (gtgt->GetType()) {
2017-04-14 19:02:05 +02:00
case cmStateEnums::STATIC_LIBRARY:
if (gtgt->GetPropertyAsBool("FRAMEWORK")) {
std::string fw_version = gtgt->GetFrameworkVersion();
buildSettings->AddAttribute("FRAMEWORK_VERSION",
this->CreateString(fw_version));
2021-11-20 13:41:27 +01:00
cmValue ext = gtgt->GetProperty("BUNDLE_EXTENSION");
2017-04-14 19:02:05 +02:00
if (ext) {
buildSettings->AddAttribute("WRAPPER_EXTENSION",
2020-08-30 11:54:41 +02:00
this->CreateString(*ext));
2017-04-14 19:02:05 +02:00
}
std::string plist = this->ComputeInfoPListLocation(gtgt);
// Xcode will create the final version of Info.plist at build time,
// so let it replace the framework name. This avoids creating
// a per-configuration Info.plist file.
this->CurrentLocalGenerator->GenerateFrameworkInfoPList(
2019-11-11 23:01:05 +01:00
gtgt, "$(EXECUTABLE_NAME)", plist);
2017-04-14 19:02:05 +02:00
buildSettings->AddAttribute("INFOPLIST_FILE",
this->CreateString(plist));
buildSettings->AddAttribute("MACH_O_TYPE",
this->CreateString("staticlib"));
} else {
buildSettings->AddAttribute("LIBRARY_STYLE",
this->CreateString("STATIC"));
}
break;
case cmStateEnums::OBJECT_LIBRARY: {
2016-07-09 11:21:54 +02:00
buildSettings->AddAttribute("LIBRARY_STYLE",
this->CreateString("STATIC"));
break;
}
2010-11-13 01:00:53 +02:00
2017-04-14 19:02:05 +02:00
case cmStateEnums::MODULE_LIBRARY: {
2016-07-09 11:21:54 +02:00
buildSettings->AddAttribute("LIBRARY_STYLE",
this->CreateString("BUNDLE"));
if (gtgt->IsCFBundleOnApple()) {
// It turns out that a BUNDLE is basically the same
// in many ways as an application bundle, as far as
// link flags go
std::string createFlags = this->LookupFlags(
"CMAKE_SHARED_MODULE_CREATE_", llang, "_FLAGS", "-bundle");
if (!createFlags.empty()) {
extraLinkOptions += " ";
extraLinkOptions += createFlags;
}
2021-11-20 13:41:27 +01:00
cmValue ext = gtgt->GetProperty("BUNDLE_EXTENSION");
2016-10-30 18:24:19 +01:00
if (ext) {
buildSettings->AddAttribute("WRAPPER_EXTENSION",
2020-08-30 11:54:41 +02:00
this->CreateString(*ext));
2016-10-30 18:24:19 +01:00
}
2016-07-09 11:21:54 +02:00
std::string plist = this->ComputeInfoPListLocation(gtgt);
// Xcode will create the final version of Info.plist at build time,
// so let it replace the cfbundle name. This avoids creating
// a per-configuration Info.plist file. The cfbundle plist
// is very similar to the application bundle plist
this->CurrentLocalGenerator->GenerateAppleInfoPList(
2019-11-11 23:01:05 +01:00
gtgt, "$(EXECUTABLE_NAME)", plist);
2016-07-09 11:21:54 +02:00
buildSettings->AddAttribute("INFOPLIST_FILE",
this->CreateString(plist));
2017-07-20 19:35:53 +02:00
} else {
2016-07-09 11:21:54 +02:00
buildSettings->AddAttribute("MACH_O_TYPE",
this->CreateString("mh_bundle"));
buildSettings->AddAttribute("GCC_DYNAMIC_NO_PIC",
this->CreateString("NO"));
// Add the flags to create an executable.
std::string createFlags =
this->LookupFlags("CMAKE_", llang, "_LINK_FLAGS", "");
if (!createFlags.empty()) {
extraLinkOptions += " ";
extraLinkOptions += createFlags;
}
}
2016-07-09 11:21:54 +02:00
break;
}
2017-04-14 19:02:05 +02:00
case cmStateEnums::SHARED_LIBRARY: {
2016-07-09 11:21:54 +02:00
if (gtgt->GetPropertyAsBool("FRAMEWORK")) {
std::string fw_version = gtgt->GetFrameworkVersion();
buildSettings->AddAttribute("FRAMEWORK_VERSION",
this->CreateString(fw_version));
2021-11-20 13:41:27 +01:00
cmValue ext = gtgt->GetProperty("BUNDLE_EXTENSION");
2016-10-30 18:24:19 +01:00
if (ext) {
buildSettings->AddAttribute("WRAPPER_EXTENSION",
2020-08-30 11:54:41 +02:00
this->CreateString(*ext));
2016-10-30 18:24:19 +01:00
}
2016-07-09 11:21:54 +02:00
std::string plist = this->ComputeInfoPListLocation(gtgt);
// Xcode will create the final version of Info.plist at build time,
// so let it replace the framework name. This avoids creating
// a per-configuration Info.plist file.
this->CurrentLocalGenerator->GenerateFrameworkInfoPList(
2019-11-11 23:01:05 +01:00
gtgt, "$(EXECUTABLE_NAME)", plist);
2016-07-09 11:21:54 +02:00
buildSettings->AddAttribute("INFOPLIST_FILE",
this->CreateString(plist));
} else {
// Add the flags to create a shared library.
std::string createFlags = this->LookupFlags(
"CMAKE_SHARED_LIBRARY_CREATE_", llang, "_FLAGS", "-dynamiclib");
if (!createFlags.empty()) {
extraLinkOptions += " ";
extraLinkOptions += createFlags;
}
}
buildSettings->AddAttribute("LIBRARY_STYLE",
this->CreateString("DYNAMIC"));
2023-07-02 19:51:09 +02:00
if (gtgt->HasImportLibrary(configName)) {
// Request .tbd file generation
buildSettings->AddAttribute("GENERATE_TEXT_BASED_STUBS",
this->CreateString("YES"));
}
2016-07-09 11:21:54 +02:00
break;
}
2017-04-14 19:02:05 +02:00
case cmStateEnums::EXECUTABLE: {
2016-07-09 11:21:54 +02:00
// Add the flags to create an executable.
std::string createFlags =
2016-07-09 11:21:54 +02:00
this->LookupFlags("CMAKE_", llang, "_LINK_FLAGS", "");
if (!createFlags.empty()) {
extraLinkOptions += " ";
extraLinkOptions += createFlags;
}
2016-07-09 11:21:54 +02:00
// Handle bundles and normal executables separately.
if (gtgt->GetPropertyAsBool("MACOSX_BUNDLE")) {
2021-11-20 13:41:27 +01:00
cmValue ext = gtgt->GetProperty("BUNDLE_EXTENSION");
2016-10-30 18:24:19 +01:00
if (ext) {
buildSettings->AddAttribute("WRAPPER_EXTENSION",
2020-08-30 11:54:41 +02:00
this->CreateString(*ext));
2016-10-30 18:24:19 +01:00
}
2016-07-09 11:21:54 +02:00
std::string plist = this->ComputeInfoPListLocation(gtgt);
// Xcode will create the final version of Info.plist at build time,
// so let it replace the executable name. This avoids creating
// a per-configuration Info.plist file.
this->CurrentLocalGenerator->GenerateAppleInfoPList(
2019-11-11 23:01:05 +01:00
gtgt, "$(EXECUTABLE_NAME)", plist);
2016-07-09 11:21:54 +02:00
buildSettings->AddAttribute("INFOPLIST_FILE",
this->CreateString(plist));
}
} break;
default:
break;
2016-07-09 11:21:54 +02:00
}
2009-10-04 10:30:41 +03:00
2017-07-20 19:35:53 +02:00
BuildObjectListOrString dirs(this, true);
BuildObjectListOrString fdirs(this, true);
BuildObjectListOrString sysdirs(this, true);
BuildObjectListOrString sysfdirs(this, true);
const bool emitSystemIncludes = this->XcodeVersion >= 83;
2022-11-16 20:14:03 +01:00
// Choose a language to use for target-wide include directories.
std::string const& langForIncludes = llang;
2016-12-03 23:28:24 +01:00
std::vector<std::string> includes;
2022-11-16 20:14:03 +01:00
if (!langForIncludes.empty()) {
2018-04-23 21:13:27 +02:00
this->CurrentLocalGenerator->GetIncludeDirectories(
2022-11-16 20:14:03 +01:00
includes, gtgt, langForIncludes, configName);
2018-04-23 21:13:27 +02:00
}
2015-04-27 22:25:09 +02:00
std::set<std::string> emitted;
emitted.insert("/System/Library/Frameworks");
2016-10-30 18:24:19 +01:00
2018-01-26 17:06:56 +01:00
for (auto& include : includes) {
if (this->NameResolvesToFramework(include)) {
2020-02-01 23:06:01 +01:00
std::string frameworkDir = cmStrCat(include, "/../");
2016-12-03 23:28:24 +01:00
frameworkDir = cmSystemTools::CollapseFullPath(frameworkDir);
if (emitted.insert(frameworkDir).second) {
2017-07-20 19:35:53 +02:00
std::string incpath = this->XCodeEscapePath(frameworkDir);
if (emitSystemIncludes &&
2023-07-02 19:51:09 +02:00
gtgt->IsSystemIncludeDirectory(frameworkDir, configName,
2022-11-16 20:14:03 +01:00
langForIncludes)) {
2017-07-20 19:35:53 +02:00
sysfdirs.Add(incpath);
} else {
fdirs.Add(incpath);
}
}
2016-12-03 23:28:24 +01:00
} else {
2018-01-26 17:06:56 +01:00
std::string incpath = this->XCodeEscapePath(include);
2017-07-20 19:35:53 +02:00
if (emitSystemIncludes &&
2018-04-23 21:13:27 +02:00
gtgt->IsSystemIncludeDirectory(include, configName,
2022-11-16 20:14:03 +01:00
langForIncludes)) {
2017-07-20 19:35:53 +02:00
sysdirs.Add(incpath);
} else {
dirs.Add(incpath);
}
}
2016-07-09 11:21:54 +02:00
}
2013-06-16 00:40:25 +03:00
// Add framework search paths needed for linking.
2016-07-09 11:21:54 +02:00
if (cmComputeLinkInformation* cli = gtgt->GetLinkInformation(configName)) {
2018-04-23 21:13:27 +02:00
for (auto const& fwDir : cli->GetFrameworkPaths()) {
2018-01-26 17:06:56 +01:00
if (emitted.insert(fwDir).second) {
std::string incpath = this->XCodeEscapePath(fwDir);
2017-07-20 19:35:53 +02:00
if (emitSystemIncludes &&
2018-04-23 21:13:27 +02:00
gtgt->IsSystemIncludeDirectory(fwDir, configName,
2022-11-16 20:14:03 +01:00
langForIncludes)) {
2017-07-20 19:35:53 +02:00
sysfdirs.Add(incpath);
} else {
fdirs.Add(incpath);
}
}
}
2016-07-09 11:21:54 +02:00
}
if (!fdirs.IsEmpty()) {
buildSettings->AddAttribute("FRAMEWORK_SEARCH_PATHS", fdirs.CreateList());
}
if (!dirs.IsEmpty()) {
buildSettings->AddAttribute("HEADER_SEARCH_PATHS", dirs.CreateList());
2022-11-16 20:14:03 +01:00
if (languages.count("Swift")) {
buildSettings->AddAttribute("SWIFT_INCLUDE_PATHS", dirs.CreateList());
}
2016-07-09 11:21:54 +02:00
}
2017-07-20 19:35:53 +02:00
if (!sysfdirs.IsEmpty()) {
buildSettings->AddAttribute("SYSTEM_FRAMEWORK_SEARCH_PATHS",
sysfdirs.CreateList());
}
if (!sysdirs.IsEmpty()) {
buildSettings->AddAttribute("SYSTEM_HEADER_SEARCH_PATHS",
sysdirs.CreateList());
}
2015-08-17 11:37:30 +02:00
2017-07-20 19:35:53 +02:00
if (this->XcodeVersion >= 60 && !emitSystemIncludes) {
2017-04-14 19:02:05 +02:00
// Add those per-language flags in addition to HEADER_SEARCH_PATHS to gain
// system include directory awareness. We need to also keep on setting
// HEADER_SEARCH_PATHS to work around a missing compile options flag for
// GNU assembly files (#16449)
2018-01-26 17:06:56 +01:00
for (auto const& language : languages) {
2017-04-14 19:02:05 +02:00
std::string includeFlags = this->CurrentLocalGenerator->GetIncludeFlags(
2021-09-14 00:13:48 +02:00
includes, gtgt, language, configName);
2017-04-14 19:02:05 +02:00
if (!includeFlags.empty()) {
2018-01-26 17:06:56 +01:00
cflags[language] += " " + includeFlags;
2017-04-14 19:02:05 +02:00
}
}
}
2015-08-17 11:37:30 +02:00
bool same_gflags = true;
std::map<std::string, std::string> gflags;
2018-01-26 17:06:56 +01:00
std::string const* last_gflag = nullptr;
2016-03-13 13:35:51 +01:00
std::string optLevel = "0";
2015-08-17 11:37:30 +02:00
// Minimal map of flags to build settings.
2018-01-26 17:06:56 +01:00
for (auto const& language : languages) {
std::string& flags = cflags[language];
std::string& gflag = gflags[language];
2016-03-13 13:35:51 +01:00
std::string oflag =
this->ExtractFlagRegex("(^| )(-Ofast|-Os|-O[0-9]*)( |$)", 2, flags);
2016-07-09 11:21:54 +02:00
if (oflag.size() == 2) {
2016-03-13 13:35:51 +01:00
optLevel = "1";
2016-07-09 11:21:54 +02:00
} else if (oflag.size() > 2) {
2016-03-13 13:35:51 +01:00
optLevel = oflag.substr(2);
2016-07-09 11:21:54 +02:00
}
2015-08-17 11:37:30 +02:00
gflag = this->ExtractFlag("-g", flags);
// put back gdwarf-2 if used since there is no way
// to represent it in the gui, but we still want debug yes
2016-07-09 11:21:54 +02:00
if (gflag == "-gdwarf-2") {
2015-08-17 11:37:30 +02:00
flags += " ";
flags += gflag;
2016-07-09 11:21:54 +02:00
}
if (last_gflag && *last_gflag != gflag) {
2015-08-17 11:37:30 +02:00
same_gflags = false;
}
2016-07-09 11:21:54 +02:00
last_gflag = &gflag;
}
2015-08-17 11:37:30 +02:00
const char* debugStr = "YES";
2016-07-09 11:21:54 +02:00
if (!same_gflags) {
2015-08-17 11:37:30 +02:00
// We can't set the Xcode flag differently depending on the language,
// so put them back in this case.
2018-01-26 17:06:56 +01:00
for (auto const& language : languages) {
cflags[language] += " ";
cflags[language] += gflags[language];
2012-02-18 12:40:36 +02:00
}
debugStr = "NO";
2016-07-09 11:21:54 +02:00
} else if (last_gflag && (last_gflag->empty() || *last_gflag == "-g0")) {
debugStr = "NO";
}
2019-11-11 23:01:05 +01:00
// extract C++ stdlib
for (auto const& language : languages) {
2020-02-01 23:06:01 +01:00
if (language != "CXX" && language != "OBJCXX") {
2019-11-11 23:01:05 +01:00
continue;
}
std::string& flags = cflags[language];
auto stdlib =
this->ExtractFlagRegex("(^| )(-stdlib=[^ ]+)( |$)", 2, flags);
if (stdlib.size() > 8) {
const auto cxxLibrary = stdlib.substr(8);
2020-02-01 23:06:01 +01:00
if (language == "CXX" ||
2021-09-14 00:13:48 +02:00
!buildSettings->GetAttribute("CLANG_CXX_LIBRARY")) {
2020-02-01 23:06:01 +01:00
buildSettings->AddAttribute("CLANG_CXX_LIBRARY",
this->CreateString(cxxLibrary));
}
2019-11-11 23:01:05 +01:00
}
}
2013-03-16 19:13:01 +02:00
buildSettings->AddAttribute("COMBINE_HIDPI_IMAGES",
this->CreateString("YES"));
buildSettings->AddAttribute("GCC_GENERATE_DEBUGGING_SYMBOLS",
this->CreateString(debugStr));
2010-11-13 01:00:53 +02:00
buildSettings->AddAttribute("GCC_OPTIMIZATION_LEVEL",
this->CreateString(optLevel));
buildSettings->AddAttribute("GCC_SYMBOLS_PRIVATE_EXTERN",
this->CreateString("NO"));
buildSettings->AddAttribute("GCC_INLINES_ARE_PRIVATE_EXTERN",
this->CreateString("NO"));
2020-02-01 23:06:01 +01:00
2018-01-26 17:06:56 +01:00
for (auto const& language : languages) {
std::string flags = cflags[language] + " " + defFlags;
2020-02-01 23:06:01 +01:00
if (language == "CXX" || language == "OBJCXX") {
if (language == "CXX" ||
2021-09-14 00:13:48 +02:00
!buildSettings->GetAttribute("OTHER_CPLUSPLUSFLAGS")) {
2020-02-01 23:06:01 +01:00
buildSettings->AddAttribute("OTHER_CPLUSPLUSFLAGS",
this->CreateString(flags));
}
2018-01-26 17:06:56 +01:00
} else if (language == "Fortran") {
2015-08-17 11:37:30 +02:00
buildSettings->AddAttribute("IFORT_OTHER_FLAGS",
2016-07-09 11:21:54 +02:00
this->CreateString(flags));
2020-02-01 23:06:01 +01:00
} else if (language == "C" || language == "OBJC") {
2021-09-14 00:13:48 +02:00
if (language == "C" || !buildSettings->GetAttribute("OTHER_CFLAGS")) {
2020-02-01 23:06:01 +01:00
buildSettings->AddAttribute("OTHER_CFLAGS", this->CreateString(flags));
}
2018-01-26 17:06:56 +01:00
} else if (language == "Swift") {
2016-10-30 18:24:19 +01:00
buildSettings->AddAttribute("OTHER_SWIFT_FLAGS",
this->CreateString(flags));
}
2016-07-09 11:21:54 +02:00
}
2012-02-18 12:40:36 +02:00
// Add Fortran source format attribute if property is set.
2018-01-26 17:06:56 +01:00
const char* format = nullptr;
2020-08-30 11:54:41 +02:00
std::string const& tgtfmt = gtgt->GetSafeProperty("Fortran_FORMAT");
2016-10-30 18:24:19 +01:00
switch (cmOutputConverter::GetFortranFormat(tgtfmt)) {
2016-07-09 11:21:54 +02:00
case cmOutputConverter::FortranFormatFixed:
format = "fixed";
break;
case cmOutputConverter::FortranFormatFree:
format = "free";
break;
default:
break;
}
if (format) {
2012-02-18 12:40:36 +02:00
buildSettings->AddAttribute("IFORT_LANG_SRCFMT",
this->CreateString(format));
2016-07-09 11:21:54 +02:00
}
2012-02-18 12:40:36 +02:00
// Create the INSTALL_PATH attribute.
std::string install_name_dir;
2017-04-14 19:02:05 +02:00
if (gtgt->GetType() == cmStateEnums::SHARED_LIBRARY) {
// Get the install_name directory for the build tree.
2015-11-17 17:22:37 +01:00
install_name_dir = gtgt->GetInstallNameDirForBuildTree(configName);
2013-11-03 12:27:13 +02:00
// Xcode doesn't create the correct install_name in some cases.
// That is, if the INSTALL_PATH is empty, or if we have versioning
// of dylib libraries, we want to specify the install_name.
// This is done by adding a link flag to create an install_name
// with just the library soname.
std::string install_name;
2016-07-09 11:21:54 +02:00
if (!install_name_dir.empty()) {
// Convert to a path for the native build tool.
cmSystemTools::ConvertToUnixSlashes(install_name_dir);
2013-11-03 12:27:13 +02:00
install_name += install_name_dir;
install_name += "/";
2016-07-09 11:21:54 +02:00
}
2015-11-17 17:22:37 +01:00
install_name += gtgt->GetSOName(configName);
2013-11-03 12:27:13 +02:00
2016-07-09 11:21:54 +02:00
if ((realName != soName) || install_name_dir.empty()) {
2013-11-03 12:27:13 +02:00
install_name_dir = "";
extraLinkOptions += " -install_name ";
2016-07-09 11:21:54 +02:00
extraLinkOptions += XCodeEscapePath(install_name);
}
2016-07-09 11:21:54 +02:00
}
buildSettings->AddAttribute("INSTALL_PATH",
2016-07-09 11:21:54 +02:00
this->CreateString(install_name_dir));
2013-11-03 12:27:13 +02:00
// Create the LD_RUNPATH_SEARCH_PATHS
2015-11-17 17:22:37 +01:00
cmComputeLinkInformation* pcli = gtgt->GetLinkInformation(configName);
2016-07-09 11:21:54 +02:00
if (pcli) {
2013-11-03 12:27:13 +02:00
std::string search_paths;
std::vector<std::string> runtimeDirs;
pcli->GetRPath(runtimeDirs, false);
2014-08-03 19:52:23 +02:00
// runpath dirs needs to be unique to prevent corruption
std::set<std::string> unique_dirs;
2018-04-23 21:13:27 +02:00
for (auto runpath : runtimeDirs) {
2014-08-03 19:52:23 +02:00
runpath = this->ExpandCFGIntDir(runpath, configName);
2016-07-09 11:21:54 +02:00
if (unique_dirs.find(runpath) == unique_dirs.end()) {
2014-08-03 19:52:23 +02:00
unique_dirs.insert(runpath);
2016-07-09 11:21:54 +02:00
if (!search_paths.empty()) {
2014-08-03 19:52:23 +02:00
search_paths += " ";
2013-11-03 12:27:13 +02:00
}
2016-07-09 11:21:54 +02:00
search_paths += this->XCodeEscapePath(runpath);
2013-11-03 12:27:13 +02:00
}
2016-07-09 11:21:54 +02:00
}
if (!search_paths.empty()) {
2013-11-03 12:27:13 +02:00
buildSettings->AddAttribute("LD_RUNPATH_SEARCH_PATHS",
2016-07-09 11:21:54 +02:00
this->CreateString(search_paths));
2013-11-03 12:27:13 +02:00
}
2016-07-09 11:21:54 +02:00
}
2013-11-03 12:27:13 +02:00
2016-03-13 13:35:51 +01:00
buildSettings->AddAttribute(this->GetTargetLinkFlagsVar(gtgt),
2016-07-09 11:21:54 +02:00
this->CreateString(extraLinkOptions));
buildSettings->AddAttribute("OTHER_REZFLAGS", this->CreateString(""));
buildSettings->AddAttribute("SECTORDER_FLAGS", this->CreateString(""));
2023-05-23 16:38:00 +02:00
buildSettings->AddAttribute("ALWAYS_SEARCH_USER_PATHS",
this->CreateString("NO"));
2016-07-09 11:21:54 +02:00
buildSettings->AddAttribute("USE_HEADERMAP", this->CreateString("NO"));
2017-07-20 19:35:53 +02:00
cmXCodeObject* group = this->CreateObject(cmXCodeObject::OBJECT_LIST);
group->AddObject(this->CreateString("$(inherited)"));
buildSettings->AddAttribute("WARNING_CFLAGS", group);
// Runtime version information.
2017-04-14 19:02:05 +02:00
if (gtgt->GetType() == cmStateEnums::SHARED_LIBRARY) {
int major;
int minor;
int patch;
2020-08-30 11:54:41 +02:00
// MACHO_CURRENT_VERSION or VERSION -> current_version
gtgt->GetTargetVersionFallback("MACHO_CURRENT_VERSION", "VERSION", major,
minor, patch);
2015-04-27 22:25:09 +02:00
std::ostringstream v;
2009-11-06 22:07:41 +02:00
// Xcode always wants at least 1.0.0 or nothing
2016-07-09 11:21:54 +02:00
if (!(major == 0 && minor == 0 && patch == 0)) {
2009-11-06 22:07:41 +02:00
v << major << "." << minor << "." << patch;
2016-07-09 11:21:54 +02:00
}
buildSettings->AddAttribute("DYLIB_CURRENT_VERSION",
2016-07-09 11:21:54 +02:00
this->CreateString(v.str()));
2020-08-30 11:54:41 +02:00
// MACHO_COMPATIBILITY_VERSION or SOVERSION -> compatibility_version
gtgt->GetTargetVersionFallback("MACHO_COMPATIBILITY_VERSION", "SOVERSION",
major, minor, patch);
2015-04-27 22:25:09 +02:00
std::ostringstream vso;
2009-11-06 22:07:41 +02:00
// Xcode always wants at least 1.0.0 or nothing
2016-07-09 11:21:54 +02:00
if (!(major == 0 && minor == 0 && patch == 0)) {
2009-11-06 22:07:41 +02:00
vso << major << "." << minor << "." << patch;
}
2016-07-09 11:21:54 +02:00
buildSettings->AddAttribute("DYLIB_COMPATIBILITY_VERSION",
this->CreateString(vso.str()));
}
2020-02-01 23:06:01 +01:00
// Precompile Headers
std::string pchHeader = gtgt->GetPchHeader(configName, llang);
if (!pchHeader.empty()) {
buildSettings->AddAttribute("GCC_PREFIX_HEADER",
this->CreateString(pchHeader));
buildSettings->AddAttribute("GCC_PRECOMPILE_PREFIX_HEADER",
this->CreateString("YES"));
}
// put this last so it can override existing settings
// Convert "XCODE_ATTRIBUTE_*" properties directly.
{
2018-04-23 21:13:27 +02:00
for (auto const& prop : gtgt->GetPropertyKeys()) {
2020-08-30 11:54:41 +02:00
if (cmHasLiteralPrefix(prop, "XCODE_ATTRIBUTE_")) {
2018-01-26 17:06:56 +01:00
std::string attribute = prop.substr(16);
2016-07-09 11:21:54 +02:00
this->FilterConfigurationAttribute(configName, attribute);
if (!attribute.empty()) {
2020-08-30 11:54:41 +02:00
std::string const& pr = gtgt->GetSafeProperty(prop);
2020-02-01 23:06:01 +01:00
std::string processed = cmGeneratorExpression::Evaluate(
2020-08-30 11:54:41 +02:00
pr, this->CurrentLocalGenerator, configName);
2016-10-30 18:24:19 +01:00
buildSettings->AddAttribute(attribute,
2016-07-09 11:21:54 +02:00
this->CreateString(processed));
2013-11-03 12:27:13 +02:00
}
}
}
}
}
2016-07-09 11:21:54 +02:00
cmXCodeObject* cmGlobalXCodeGenerator::CreateUtilityTarget(
cmGeneratorTarget* gtgt)
{
2021-09-14 00:13:48 +02:00
cmXCodeObject* shellBuildPhase = this->CreateObject(
cmXCodeObject::PBXShellScriptBuildPhase, gtgt->GetName());
2010-11-13 01:00:53 +02:00
shellBuildPhase->AddAttribute("buildActionMask",
this->CreateString("2147483647"));
cmXCodeObject* buildFiles = this->CreateObject(cmXCodeObject::OBJECT_LIST);
shellBuildPhase->AddAttribute("files", buildFiles);
cmXCodeObject* inputPaths = this->CreateObject(cmXCodeObject::OBJECT_LIST);
shellBuildPhase->AddAttribute("inputPaths", inputPaths);
cmXCodeObject* outputPaths = this->CreateObject(cmXCodeObject::OBJECT_LIST);
shellBuildPhase->AddAttribute("outputPaths", outputPaths);
shellBuildPhase->AddAttribute("runOnlyForDeploymentPostprocessing",
this->CreateString("0"));
2016-07-09 11:21:54 +02:00
shellBuildPhase->AddAttribute("shellPath", this->CreateString("/bin/sh"));
shellBuildPhase->AddAttribute(
"shellScript", this->CreateString("# shell script goes here\nexit 0"));
shellBuildPhase->AddAttribute("showEnvVarsInLog", this->CreateString("0"));
2012-02-18 12:40:36 +02:00
2010-11-13 01:00:53 +02:00
cmXCodeObject* target =
this->CreateObject(cmXCodeObject::PBXAggregateTarget);
2016-10-30 18:24:19 +01:00
target->SetComment(gtgt->GetName());
2016-07-09 11:21:54 +02:00
cmXCodeObject* buildPhases = this->CreateObject(cmXCodeObject::OBJECT_LIST);
std::vector<cmXCodeObject*> emptyContentVector;
2018-01-26 17:06:56 +01:00
this->CreateCustomCommands(buildPhases, nullptr, nullptr, nullptr,
emptyContentVector, nullptr, gtgt);
target->AddAttribute("buildPhases", buildPhases);
2017-07-20 19:35:53 +02:00
this->AddConfigurations(target, gtgt);
2016-07-09 11:21:54 +02:00
cmXCodeObject* dependencies = this->CreateObject(cmXCodeObject::OBJECT_LIST);
target->AddAttribute("dependencies", dependencies);
2016-03-13 13:35:51 +01:00
target->AddAttribute("name", this->CreateString(gtgt->GetName()));
2016-07-09 11:21:54 +02:00
target->AddAttribute("productName", this->CreateString(gtgt->GetName()));
2016-03-13 13:35:51 +01:00
target->SetTarget(gtgt);
this->XCodeObjectMap[gtgt] = target;
// Add source files without build rules for editing convenience.
2021-09-14 00:13:48 +02:00
if (gtgt->GetType() != cmStateEnums::GLOBAL_TARGET &&
2018-04-23 21:13:27 +02:00
gtgt->GetName() != CMAKE_CHECK_BUILD_SYSTEM_TARGET) {
2014-08-03 19:52:23 +02:00
std::vector<cmSourceFile*> sources;
2021-09-14 00:13:48 +02:00
if (!gtgt->GetConfigCommonSourceFilesForXcode(sources)) {
2018-01-26 17:06:56 +01:00
return nullptr;
2016-07-09 11:21:54 +02:00
}
2015-04-27 22:25:09 +02:00
2018-04-23 21:13:27 +02:00
// Add CMakeLists.txt file for user convenience.
this->AddXCodeProjBuildRule(gtgt, sources);
for (auto sourceFile : sources) {
2019-11-11 23:01:05 +01:00
if (!sourceFile->GetIsGenerated()) {
2018-04-23 21:13:27 +02:00
this->CreateXCodeFileReference(sourceFile, gtgt);
}
}
2016-07-09 11:21:54 +02:00
}
2016-10-30 18:24:19 +01:00
target->SetId(this->GetOrCreateId(gtgt->GetName(), target->GetId()));
2012-02-18 12:40:36 +02:00
return target;
}
2009-10-04 10:30:41 +03:00
std::string cmGlobalXCodeGenerator::AddConfigurations(cmXCodeObject* target,
2016-03-13 13:35:51 +01:00
cmGeneratorTarget* gtgt)
{
2023-07-02 19:51:09 +02:00
cmList const configList{ this->CurrentMakefile->GetRequiredDefinition(
"CMAKE_CONFIGURATION_TYPES") };
2010-11-13 01:00:53 +02:00
cmXCodeObject* configlist =
this->CreateObject(cmXCodeObject::XCConfigurationList);
cmXCodeObject* buildConfigurations =
this->CreateObject(cmXCodeObject::OBJECT_LIST);
configlist->AddAttribute("buildConfigurations", buildConfigurations);
2020-02-01 23:06:01 +01:00
std::string comment = cmStrCat("Build configuration list for ",
cmXCodeObject::PBXTypeNames[target->GetIsA()],
" \"", gtgt->GetName(), '"');
2016-10-30 18:24:19 +01:00
configlist->SetComment(comment);
2010-11-13 01:00:53 +02:00
target->AddAttribute("buildConfigurationList",
this->CreateObjectReference(configlist));
2023-07-02 19:51:09 +02:00
for (auto const& i : configList) {
2010-11-13 01:00:53 +02:00
cmXCodeObject* config =
this->CreateObject(cmXCodeObject::XCBuildConfiguration);
buildConfigurations->AddObject(config);
cmXCodeObject* buildSettings =
this->CreateObject(cmXCodeObject::ATTRIBUTE_GROUP);
2018-01-26 17:06:56 +01:00
this->CreateBuildSettings(gtgt, buildSettings, i);
config->AddAttribute("name", this->CreateString(i));
config->SetComment(i);
config->AddAttribute("buildSettings", buildSettings);
2022-08-04 22:12:04 +02:00
this->CreateTargetXCConfigSettings(gtgt, config, i);
2016-07-09 11:21:54 +02:00
}
2023-07-02 19:51:09 +02:00
if (!configList.empty()) {
2010-11-13 01:00:53 +02:00
configlist->AddAttribute("defaultConfigurationName",
2023-07-02 19:51:09 +02:00
this->CreateString(configList[0]));
2010-11-13 01:00:53 +02:00
configlist->AddAttribute("defaultConfigurationIsVisible",
this->CreateString("0"));
2023-07-02 19:51:09 +02:00
return configList[0];
2016-07-09 11:21:54 +02:00
}
2009-10-04 10:30:41 +03:00
return "";
}
2022-08-04 22:12:04 +02:00
void cmGlobalXCodeGenerator::CreateGlobalXCConfigSettings(
cmLocalGenerator* root, cmXCodeObject* config, const std::string& configName)
{
auto xcconfig = cmGeneratorExpression::Evaluate(
this->CurrentMakefile->GetSafeDefinition("CMAKE_XCODE_XCCONFIG"),
this->CurrentLocalGenerator, configName);
if (xcconfig.empty()) {
return;
}
auto sf = this->CurrentMakefile->GetSource(xcconfig);
if (!sf) {
cmSystemTools::Error(
cmStrCat("sources for ALL_BUILD do not contain xcconfig file: '",
xcconfig, "' (configuration: ", configName, ")"));
return;
}
cmXCodeObject* fileRef = this->CreateXCodeFileReferenceFromPath(
sf->ResolveFullPath(), root->FindGeneratorTargetToUse("ALL_BUILD"), "",
sf);
if (!fileRef) {
// error is already reported by CreateXCodeFileReferenceFromPath
return;
}
config->AddAttribute("baseConfigurationReference",
this->CreateObjectReference(fileRef));
}
void cmGlobalXCodeGenerator::CreateTargetXCConfigSettings(
cmGeneratorTarget* target, cmXCodeObject* config,
const std::string& configName)
{
auto xcconfig =
cmGeneratorExpression::Evaluate(target->GetSafeProperty("XCODE_XCCONFIG"),
this->CurrentLocalGenerator, configName);
if (xcconfig.empty()) {
return;
}
auto sf = target->Makefile->GetSource(xcconfig);
if (!sf) {
cmSystemTools::Error(cmStrCat("target sources for target ",
target->Target->GetName(),
" do not contain xcconfig file: '", xcconfig,
"' (configuration: ", configName, ")"));
return;
}
cmXCodeObject* fileRef = this->CreateXCodeFileReferenceFromPath(
sf->ResolveFullPath(), target, "", sf);
if (!fileRef) {
// error is already reported by CreateXCodeFileReferenceFromPath
return;
}
config->AddAttribute("baseConfigurationReference",
this->CreateObjectReference(fileRef));
}
2016-03-13 13:35:51 +01:00
const char* cmGlobalXCodeGenerator::GetTargetLinkFlagsVar(
2016-07-09 11:21:54 +02:00
cmGeneratorTarget const* target) const
2014-08-08 17:52:44 +02:00
{
2016-07-09 11:21:54 +02:00
if (this->XcodeVersion >= 60 &&
2017-04-14 19:02:05 +02:00
(target->GetType() == cmStateEnums::STATIC_LIBRARY ||
target->GetType() == cmStateEnums::OBJECT_LIBRARY)) {
2014-08-08 17:52:44 +02:00
return "OTHER_LIBTOOLFLAGS";
2016-07-09 11:21:54 +02:00
}
2018-01-26 17:06:56 +01:00
return "OTHER_LDFLAGS";
2014-08-08 17:52:44 +02:00
}
2016-03-13 13:35:51 +01:00
const char* cmGlobalXCodeGenerator::GetTargetFileType(
2016-07-09 11:21:54 +02:00
cmGeneratorTarget* target)
2009-10-04 10:30:41 +03:00
{
2021-11-20 13:41:27 +01:00
if (cmValue e = target->GetProperty("XCODE_EXPLICIT_FILE_TYPE")) {
2020-08-30 11:54:41 +02:00
return e->c_str();
2017-04-14 19:02:05 +02:00
}
2016-07-09 11:21:54 +02:00
switch (target->GetType()) {
2017-04-14 19:02:05 +02:00
case cmStateEnums::OBJECT_LIBRARY:
2009-10-04 10:30:41 +03:00
return "archive.ar";
2017-04-14 19:02:05 +02:00
case cmStateEnums::STATIC_LIBRARY:
return (target->GetPropertyAsBool("FRAMEWORK") ? "wrapper.framework"
: "archive.ar");
case cmStateEnums::MODULE_LIBRARY:
2018-01-26 17:06:56 +01:00
if (target->IsXCTestOnApple()) {
2015-08-17 11:37:30 +02:00
return "wrapper.cfbundle";
2018-01-26 17:06:56 +01:00
}
if (target->IsCFBundleOnApple()) {
2011-06-19 15:41:06 +03:00
return "wrapper.plug-in";
2018-01-26 17:06:56 +01:00
}
return "compiled.mach-o.executable";
2017-04-14 19:02:05 +02:00
case cmStateEnums::SHARED_LIBRARY:
2016-07-09 11:21:54 +02:00
return (target->GetPropertyAsBool("FRAMEWORK")
? "wrapper.framework"
: "compiled.mach-o.dylib");
2017-04-14 19:02:05 +02:00
case cmStateEnums::EXECUTABLE:
2009-10-04 10:30:41 +03:00
return "compiled.mach-o.executable";
2016-07-09 11:21:54 +02:00
default:
break;
}
2018-01-26 17:06:56 +01:00
return nullptr;
2009-10-04 10:30:41 +03:00
}
2016-03-13 13:35:51 +01:00
const char* cmGlobalXCodeGenerator::GetTargetProductType(
2016-07-09 11:21:54 +02:00
cmGeneratorTarget* target)
2009-10-04 10:30:41 +03:00
{
2021-11-20 13:41:27 +01:00
if (cmValue e = target->GetProperty("XCODE_PRODUCT_TYPE")) {
2020-08-30 11:54:41 +02:00
return e->c_str();
2017-04-14 19:02:05 +02:00
}
2016-07-09 11:21:54 +02:00
switch (target->GetType()) {
2017-04-14 19:02:05 +02:00
case cmStateEnums::OBJECT_LIBRARY:
2009-10-04 10:30:41 +03:00
return "com.apple.product-type.library.static";
2017-04-14 19:02:05 +02:00
case cmStateEnums::STATIC_LIBRARY:
return (target->GetPropertyAsBool("FRAMEWORK")
? "com.apple.product-type.framework"
: "com.apple.product-type.library.static");
case cmStateEnums::MODULE_LIBRARY:
2018-01-26 17:06:56 +01:00
if (target->IsXCTestOnApple()) {
2015-08-17 11:37:30 +02:00
return "com.apple.product-type.bundle.unit-test";
2018-01-26 17:06:56 +01:00
} else if (target->IsCFBundleOnApple()) {
2011-06-19 15:41:06 +03:00
return "com.apple.product-type.bundle";
2018-01-26 17:06:56 +01:00
} else {
2017-07-20 19:35:53 +02:00
return "com.apple.product-type.tool";
2018-01-26 17:06:56 +01:00
}
2017-04-14 19:02:05 +02:00
case cmStateEnums::SHARED_LIBRARY:
2016-07-09 11:21:54 +02:00
return (target->GetPropertyAsBool("FRAMEWORK")
? "com.apple.product-type.framework"
: "com.apple.product-type.library.dynamic");
2017-04-14 19:02:05 +02:00
case cmStateEnums::EXECUTABLE:
2016-07-09 11:21:54 +02:00
return (target->GetPropertyAsBool("MACOSX_BUNDLE")
? "com.apple.product-type.application"
: "com.apple.product-type.tool");
default:
break;
}
2018-01-26 17:06:56 +01:00
return nullptr;
}
2016-07-09 11:21:54 +02:00
cmXCodeObject* cmGlobalXCodeGenerator::CreateXCodeTarget(
cmGeneratorTarget* gtgt, cmXCodeObject* buildPhases)
{
2021-09-14 00:13:48 +02:00
if (!gtgt->IsInBuildSystem()) {
2018-01-26 17:06:56 +01:00
return nullptr;
2016-07-09 11:21:54 +02:00
}
cmXCodeObject* target = this->CreateObject(cmXCodeObject::PBXNativeTarget);
target->AddAttribute("buildPhases", buildPhases);
cmXCodeObject* buildRules = this->CreateObject(cmXCodeObject::OBJECT_LIST);
target->AddAttribute("buildRules", buildRules);
2009-10-04 10:30:41 +03:00
std::string defConfig;
2017-07-20 19:35:53 +02:00
defConfig = this->AddConfigurations(target, gtgt);
2016-07-09 11:21:54 +02:00
cmXCodeObject* dependencies = this->CreateObject(cmXCodeObject::OBJECT_LIST);
target->AddAttribute("dependencies", dependencies);
2016-03-13 13:35:51 +01:00
target->AddAttribute("name", this->CreateString(gtgt->GetName()));
2016-07-09 11:21:54 +02:00
target->AddAttribute("productName", this->CreateString(gtgt->GetName()));
2016-07-09 11:21:54 +02:00
cmXCodeObject* fileRef = this->CreateObject(cmXCodeObject::PBXFileReference);
if (const char* fileType = this->GetTargetFileType(gtgt)) {
2009-10-04 10:30:41 +03:00
fileRef->AddAttribute("explicitFileType", this->CreateString(fileType));
2016-07-09 11:21:54 +02:00
}
2012-04-19 19:04:21 +03:00
std::string fullName;
2017-04-14 19:02:05 +02:00
if (gtgt->GetType() == cmStateEnums::OBJECT_LIBRARY) {
2020-02-01 23:06:01 +01:00
fullName = cmStrCat("lib", gtgt->GetName(), ".a");
2016-07-09 11:21:54 +02:00
} else {
2016-10-30 18:24:19 +01:00
fullName = gtgt->GetFullName(defConfig);
2016-07-09 11:21:54 +02:00
}
fileRef->AddAttribute("path", this->CreateString(fullName));
fileRef->AddAttribute("sourceTree",
this->CreateString("BUILT_PRODUCTS_DIR"));
2016-10-30 18:24:19 +01:00
fileRef->SetComment(gtgt->GetName());
2010-11-13 01:00:53 +02:00
target->AddAttribute("productReference",
this->CreateObjectReference(fileRef));
2016-07-09 11:21:54 +02:00
if (const char* productType = this->GetTargetProductType(gtgt)) {
2009-10-04 10:30:41 +03:00
target->AddAttribute("productType", this->CreateString(productType));
2016-07-09 11:21:54 +02:00
}
2016-03-13 13:35:51 +01:00
target->SetTarget(gtgt);
this->XCodeObjectMap[gtgt] = target;
2016-10-30 18:24:19 +01:00
target->SetId(this->GetOrCreateId(gtgt->GetName(), target->GetId()));
return target;
}
2016-07-09 11:21:54 +02:00
cmXCodeObject* cmGlobalXCodeGenerator::FindXCodeTarget(
cmGeneratorTarget const* t)
{
2016-07-09 11:21:54 +02:00
if (!t) {
2018-01-26 17:06:56 +01:00
return nullptr;
2016-07-09 11:21:54 +02:00
}
2015-04-27 22:25:09 +02:00
2020-02-01 23:06:01 +01:00
auto const i = this->XCodeObjectMap.find(t);
2016-07-09 11:21:54 +02:00
if (i == this->XCodeObjectMap.end()) {
2018-01-26 17:06:56 +01:00
return nullptr;
2016-07-09 11:21:54 +02:00
}
2015-04-27 22:25:09 +02:00
return i->second;
}
2021-09-14 00:13:48 +02:00
std::string cmGlobalXCodeGenerator::GetObjectId(cmXCodeObject::PBXType ptype,
cm::string_view key)
{
std::string objectId;
if (!key.empty()) {
cmCryptoHash hash(cmCryptoHash::AlgoSHA256);
hash.Initialize();
hash.Append(&ptype, sizeof(ptype));
hash.Append(key);
objectId = cmSystemTools::UpperCase(hash.FinalizeHex().substr(0, 24));
} else {
char cUuid[40] = { 0 };
CFUUIDRef uuid = CFUUIDCreate(kCFAllocatorDefault);
CFStringRef s = CFUUIDCreateString(kCFAllocatorDefault, uuid);
CFStringGetCString(s, cUuid, sizeof(cUuid), kCFStringEncodingUTF8);
objectId = cUuid;
CFRelease(s);
CFRelease(uuid);
cmSystemTools::ReplaceString(objectId, "-", "");
if (objectId.size() > 24) {
objectId = objectId.substr(0, 24);
}
}
return objectId;
}
2015-04-27 22:25:09 +02:00
std::string cmGlobalXCodeGenerator::GetOrCreateId(const std::string& name,
const std::string& id)
2012-02-18 12:40:36 +02:00
{
2020-02-01 23:06:01 +01:00
std::string guidStoreName = cmStrCat(name, "_GUID_CMAKE");
2021-11-20 13:41:27 +01:00
cmValue storedGUID = this->CMakeInstance->GetCacheDefinition(guidStoreName);
2012-02-18 12:40:36 +02:00
2016-07-09 11:21:54 +02:00
if (storedGUID) {
2021-09-14 00:13:48 +02:00
return *storedGUID;
2016-07-09 11:21:54 +02:00
}
2012-02-18 12:40:36 +02:00
2021-11-20 13:41:27 +01:00
this->CMakeInstance->AddCacheEntry(
guidStoreName, id, "Stored Xcode object GUID", cmStateEnums::INTERNAL);
2012-02-18 12:40:36 +02:00
return id;
}
void cmGlobalXCodeGenerator::AddDependTarget(cmXCodeObject* target,
cmXCodeObject* dependTarget)
{
2013-03-16 19:13:01 +02:00
// This is called once for every edge in the target dependency graph.
cmXCodeObject* container =
this->CreateObject(cmXCodeObject::PBXContainerItemProxy);
container->SetComment("PBXContainerItemProxy");
container->AddAttribute("containerPortal",
this->CreateObjectReference(this->RootObject));
container->AddAttribute("proxyType", this->CreateString("1"));
container->AddAttribute("remoteGlobalIDString",
this->CreateObjectReference(dependTarget));
2016-07-09 11:21:54 +02:00
container->AddAttribute(
"remoteInfo", this->CreateString(dependTarget->GetTarget()->GetName()));
2013-03-16 19:13:01 +02:00
cmXCodeObject* targetdep =
this->CreateObject(cmXCodeObject::PBXTargetDependency);
targetdep->SetComment("PBXTargetDependency");
2016-07-09 11:21:54 +02:00
targetdep->AddAttribute("target", this->CreateObjectReference(dependTarget));
2013-03-16 19:13:01 +02:00
targetdep->AddAttribute("targetProxy",
this->CreateObjectReference(container));
2010-11-13 01:00:53 +02:00
2021-09-14 00:13:48 +02:00
cmXCodeObject* depends = target->GetAttribute("dependencies");
2016-07-09 11:21:54 +02:00
if (!depends) {
cmSystemTools::Error(
"target does not have dependencies attribute error..");
2010-11-13 01:00:53 +02:00
2016-07-09 11:21:54 +02:00
} else {
depends->AddUniqueObject(targetdep);
2016-07-09 11:21:54 +02:00
}
}
void cmGlobalXCodeGenerator::AppendOrAddBuildSetting(cmXCodeObject* settings,
const char* attribute,
2021-09-14 00:13:48 +02:00
cmXCodeObject* value)
{
2016-07-09 11:21:54 +02:00
if (settings) {
2021-09-14 00:13:48 +02:00
cmXCodeObject* attr = settings->GetAttribute(attribute);
2016-07-09 11:21:54 +02:00
if (!attr) {
2021-09-14 00:13:48 +02:00
settings->AddAttribute(attribute, value);
} else {
this->AppendBuildSettingAttribute(settings, attribute, attr, value);
}
}
}
void cmGlobalXCodeGenerator::AppendBuildSettingAttribute(
cmXCodeObject* settings, const char* attribute, cmXCodeObject* attr,
cmXCodeObject* value)
{
if (value->GetType() != cmXCodeObject::OBJECT_LIST &&
value->GetType() != cmXCodeObject::STRING) {
cmSystemTools::Error("Unsupported value type for appending: " +
std::string(attribute));
return;
}
if (attr->GetType() == cmXCodeObject::OBJECT_LIST) {
if (value->GetType() == cmXCodeObject::OBJECT_LIST) {
for (auto* obj : value->GetObjectList()) {
attr->AddObject(obj);
}
} else {
attr->AddObject(value);
}
} else if (attr->GetType() == cmXCodeObject::STRING) {
if (value->GetType() == cmXCodeObject::OBJECT_LIST) {
// Add old value as a list item to new object list
// and replace the attribute with the new list
value->PrependObject(attr);
settings->AddAttribute(attribute, value);
2016-07-09 11:21:54 +02:00
} else {
2021-09-14 00:13:48 +02:00
std::string newValue =
cmStrCat(attr->GetString(), ' ', value->GetString());
attr->SetString(newValue);
}
2021-09-14 00:13:48 +02:00
} else {
cmSystemTools::Error("Unsupported attribute type for appending: " +
std::string(attribute));
2016-07-09 11:21:54 +02:00
}
}
2016-07-09 11:21:54 +02:00
void cmGlobalXCodeGenerator::AppendBuildSettingAttribute(
2021-09-14 00:13:48 +02:00
cmXCodeObject* target, const char* attribute, cmXCodeObject* value,
2016-07-09 11:21:54 +02:00
const std::string& configName)
{
2017-07-20 19:35:53 +02:00
// There are multiple configurations. Add the setting to the
// buildSettings of the configuration name given.
cmXCodeObject* configurationList =
2021-09-14 00:13:48 +02:00
target->GetAttribute("buildConfigurationList")->GetObject();
2017-07-20 19:35:53 +02:00
cmXCodeObject* buildConfigs =
2021-09-14 00:13:48 +02:00
configurationList->GetAttribute("buildConfigurations");
2018-04-23 21:13:27 +02:00
for (auto obj : buildConfigs->GetObjectList()) {
if (configName.empty() ||
2021-09-14 00:13:48 +02:00
obj->GetAttribute("name")->GetString() == configName) {
cmXCodeObject* settings = obj->GetAttribute("buildSettings");
2017-07-20 19:35:53 +02:00
this->AppendOrAddBuildSetting(settings, attribute, value);
}
2016-07-09 11:21:54 +02:00
}
}
2021-09-14 00:13:48 +02:00
void cmGlobalXCodeGenerator::InheritBuildSettingAttribute(
cmXCodeObject* target, const char* attribute)
{
cmXCodeObject* configurationList =
target->GetAttribute("buildConfigurationList")->GetObject();
cmXCodeObject* buildConfigs =
configurationList->GetAttribute("buildConfigurations");
for (auto obj : buildConfigs->GetObjectList()) {
cmXCodeObject* settings = obj->GetAttribute("buildSettings");
if (cmXCodeObject* attr = settings->GetAttribute(attribute)) {
BuildObjectListOrString inherited(this, true);
inherited.Add("$(inherited)");
this->AppendBuildSettingAttribute(settings, attribute, attr,
inherited.CreateList());
}
}
}
2016-07-09 11:21:54 +02:00
void cmGlobalXCodeGenerator::AddDependAndLinkInformation(cmXCodeObject* target)
{
2016-03-13 13:35:51 +01:00
cmGeneratorTarget* gt = target->GetTarget();
2016-07-09 11:21:54 +02:00
if (!gt) {
2016-03-13 13:35:51 +01:00
cmSystemTools::Error("Error no target on xobject\n");
2014-08-03 19:52:23 +02:00
return;
2016-07-09 11:21:54 +02:00
}
2021-09-14 00:13:48 +02:00
if (!gt->IsInBuildSystem()) {
return;
2016-07-09 11:21:54 +02:00
}
// Add dependencies on other CMake targets.
2018-04-23 21:13:27 +02:00
for (const auto& dep : this->GetTargetDirectDepends(gt)) {
2018-01-26 17:06:56 +01:00
if (cmXCodeObject* dptarget = this->FindXCodeTarget(dep)) {
this->AddDependTarget(target, dptarget);
}
2016-07-09 11:21:54 +02:00
}
2021-09-14 00:13:48 +02:00
// Separate libraries into ones that can be linked using "Link Binary With
// Libraries" build phase and the ones that can't. Only targets that build
// Apple bundles (.app, .framework, .bundle), executables and dylibs can use
// this feature and only targets that represent actual libraries (object,
// static, dynamic or bundle, excluding executables) will be used. These are
// limitations imposed by CMake use-cases - otherwise a lot of things break.
// The rest will be linked using linker flags (OTHER_LDFLAGS setting in Xcode
// project).
std::map<std::string, std::vector<cmComputeLinkInformation::Item const*>>
configItemMap;
auto addToLinkerArguments =
[&configItemMap](const std::string& configName,
cmComputeLinkInformation::Item const* libItemPtr) {
auto& linkVector = configItemMap[configName];
if (std::find_if(linkVector.begin(), linkVector.end(),
[libItemPtr](cmComputeLinkInformation::Item const* p) {
return p == libItemPtr;
}) == linkVector.end()) {
linkVector.push_back(libItemPtr);
}
};
std::vector<cmComputeLinkInformation::Item const*> linkPhaseTargetVector;
std::map<std::string, std::vector<std::string>> targetConfigMap;
using ConfigItemPair =
std::pair<std::string, cmComputeLinkInformation::Item const*>;
std::map<std::string, std::vector<ConfigItemPair>> targetItemMap;
std::map<std::string, std::vector<std::string>> targetProductNameMap;
bool useLinkPhase = false;
bool forceLinkPhase = false;
2021-11-20 13:41:27 +01:00
cmValue prop =
2021-09-14 00:13:48 +02:00
target->GetTarget()->GetProperty("XCODE_LINK_BUILD_PHASE_MODE");
if (prop) {
if (*prop == "BUILT_ONLY") {
useLinkPhase = true;
} else if (*prop == "KNOWN_LOCATION") {
useLinkPhase = true;
forceLinkPhase = true;
} else if (*prop != "NONE") {
cmSystemTools::Error("Invalid value for XCODE_LINK_BUILD_PHASE_MODE: " +
*prop);
return;
}
}
for (auto const& configName : this->CurrentConfigurationTypes) {
cmComputeLinkInformation* cli = gt->GetLinkInformation(configName);
if (!cli) {
continue;
}
for (auto const& libItem : cli->GetItems()) {
// We want to put only static libraries, dynamic libraries, frameworks
// and bundles that are built from targets that are not imported in "Link
// Binary With Libraries" build phase. Except if the target property
// XCODE_LINK_BUILD_PHASE_MODE is KNOWN_LOCATION then all imported and
// non-target libraries will be added as well.
if (useLinkPhase &&
(gt->GetType() == cmStateEnums::EXECUTABLE ||
gt->GetType() == cmStateEnums::SHARED_LIBRARY ||
gt->GetType() == cmStateEnums::MODULE_LIBRARY) &&
((libItem.Target &&
(!libItem.Target->IsImported() || forceLinkPhase) &&
(libItem.Target->GetType() == cmStateEnums::STATIC_LIBRARY ||
libItem.Target->GetType() == cmStateEnums::SHARED_LIBRARY ||
libItem.Target->GetType() == cmStateEnums::MODULE_LIBRARY ||
libItem.Target->GetType() == cmStateEnums::UNKNOWN_LIBRARY)) ||
(!libItem.Target &&
libItem.IsPath == cmComputeLinkInformation::ItemIsPath::Yes &&
forceLinkPhase))) {
std::string libName;
2022-11-30 20:55:39 +01:00
bool canUseLinkPhase = !libItem.HasFeature() ||
libItem.GetFeatureName() == "__CMAKE_LINK_FRAMEWORK"_s ||
libItem.GetFeatureName() == "FRAMEWORK"_s ||
libItem.GetFeatureName() == "WEAK_FRAMEWORK"_s ||
libItem.GetFeatureName() == "WEAK_LIBRARY"_s;
if (canUseLinkPhase) {
if (libItem.Target) {
if (libItem.Target->GetType() == cmStateEnums::UNKNOWN_LIBRARY) {
canUseLinkPhase = canUseLinkPhase && forceLinkPhase;
} else {
// If a library target uses custom build output directory Xcode
// won't pick it up so we have to resort back to linker flags,
// but that's OK as long as the custom output dir is absolute
// path.
for (auto const& libConfigName :
this->CurrentConfigurationTypes) {
canUseLinkPhase = canUseLinkPhase &&
libItem.Target->UsesDefaultOutputDir(
libConfigName, cmStateEnums::RuntimeBinaryArtifact);
}
}
libName = libItem.Target->GetName();
2021-09-14 00:13:48 +02:00
} else {
2022-11-30 20:55:39 +01:00
libName = cmSystemTools::GetFilenameName(libItem.Value.Value);
// We don't want all the possible files here, just standard
// libraries
const auto libExt = cmSystemTools::GetFilenameExtension(libName);
if (!IsLinkPhaseLibraryExtension(libExt)) {
canUseLinkPhase = false;
2021-09-14 00:13:48 +02:00
}
}
}
if (canUseLinkPhase) {
// Add unique configuration name to target-config map for later
// checks
auto& configVector = targetConfigMap[libName];
if (std::find(configVector.begin(), configVector.end(),
configName) == configVector.end()) {
configVector.push_back(configName);
}
// Add a pair of config and item to target-item map
auto& itemVector = targetItemMap[libName];
2023-05-23 16:38:00 +02:00
itemVector.emplace_back(configName, &libItem);
2021-09-14 00:13:48 +02:00
// Add product file-name to a lib-product map
auto productName =
cmSystemTools::GetFilenameName(libItem.Value.Value);
auto& productVector = targetProductNameMap[libName];
if (std::find(productVector.begin(), productVector.end(),
productName) == productVector.end()) {
productVector.push_back(productName);
}
continue;
}
}
// Add this library item to a regular linker flag list
addToLinkerArguments(configName, &libItem);
}
}
// Go through target library map and separate libraries that are linked
// in all configurations and produce only single product, from the rest.
// Only these will be linked through "Link Binary With Libraries" build
// phase.
for (auto const& targetLibConfigs : targetConfigMap) {
// Add this library to "Link Binary With Libraries" build phase if it's
// linked in all configurations and it has only one product name
auto& itemVector = targetItemMap[targetLibConfigs.first];
auto& productVector = targetProductNameMap[targetLibConfigs.first];
if (targetLibConfigs.second == this->CurrentConfigurationTypes &&
productVector.size() == 1) {
// Add this library to "Link Binary With Libraries" list
linkPhaseTargetVector.push_back(itemVector[0].second);
} else {
for (auto const& libItem : targetItemMap[targetLibConfigs.first]) {
// Add this library item to a regular linker flag list
addToLinkerArguments(libItem.first, libItem.second);
}
}
}
// Add libraries to "Link Binary With Libraries" build phase and collect
// their search paths. Xcode does not support per-configuration linking
// in this build phase so we don't have to do this for each configuration
// separately.
std::vector<std::string> linkSearchPaths;
std::vector<std::string> frameworkSearchPaths;
2022-11-30 20:55:39 +01:00
std::set<std::pair<cmXCodeObject*, std::string>> linkBuildFileSet;
2021-09-14 00:13:48 +02:00
for (auto const& libItem : linkPhaseTargetVector) {
// Add target output directory as a library search path
std::string linkDir;
if (libItem->Target) {
linkDir = libItem->Target->GetLocationForBuild();
} else {
linkDir = libItem->Value.Value;
}
2022-08-04 22:12:04 +02:00
if (cmHasSuffix(libItem->GetFeatureName(), "FRAMEWORK"_s)) {
2022-11-16 20:14:03 +01:00
auto fwDescriptor = this->SplitFrameworkPath(
linkDir, cmGlobalGenerator::FrameworkFormat::Extended);
if (fwDescriptor && !fwDescriptor->Directory.empty()) {
linkDir = fwDescriptor->Directory;
2022-08-04 22:12:04 +02:00
if (std::find(frameworkSearchPaths.begin(), frameworkSearchPaths.end(),
linkDir) == frameworkSearchPaths.end()) {
frameworkSearchPaths.push_back(linkDir);
}
2021-09-14 00:13:48 +02:00
}
} else {
2022-09-13 21:35:23 +02:00
linkDir = cmSystemTools::GetParentDirectory(linkDir);
2021-09-14 00:13:48 +02:00
if (std::find(linkSearchPaths.begin(), linkSearchPaths.end(), linkDir) ==
linkSearchPaths.end()) {
linkSearchPaths.push_back(linkDir);
}
}
2022-08-04 22:12:04 +02:00
2021-09-14 00:13:48 +02:00
if (libItem->Target && !libItem->Target->IsImported()) {
for (auto const& configName : this->CurrentConfigurationTypes) {
target->AddDependTarget(configName, libItem->Target->GetName());
}
}
// Get the library target
auto* libTarget = FindXCodeTarget(libItem->Target);
cmXCodeObject* buildFile;
if (!libTarget) {
if (libItem->IsPath == cmComputeLinkInformation::ItemIsPath::Yes) {
// Get or create a direct file ref in the root project
auto cleanPath = libItem->Value.Value;
if (cmSystemTools::FileIsFullPath(cleanPath)) {
// Some arguments are reported as paths, but they are actually not,
// so we can't collapse them, and neither can we collapse relative
// paths
cleanPath = cmSystemTools::CollapseFullPath(cleanPath);
}
auto it = this->ExternalLibRefs.find(cleanPath);
if (it == this->ExternalLibRefs.end()) {
buildFile = CreateXCodeBuildFileFromPath(cleanPath, gt, "", nullptr);
if (!buildFile) {
// Add this library item back to a regular linker flag list
for (const auto& conf : configItemMap) {
addToLinkerArguments(conf.first, libItem);
}
continue;
}
this->ExternalLibRefs.emplace(cleanPath, buildFile);
} else {
buildFile = it->second;
}
} else {
// Add this library item back to a regular linker flag list
for (const auto& conf : configItemMap) {
addToLinkerArguments(conf.first, libItem);
}
continue;
}
} else {
// Add the target output file as a build reference for other targets
// to link against
auto* fileRefObject = libTarget->GetAttribute("productReference");
if (!fileRefObject) {
// Add this library item back to a regular linker flag list
for (const auto& conf : configItemMap) {
addToLinkerArguments(conf.first, libItem);
}
continue;
}
auto it = FileRefToBuildFileMap.find(fileRefObject);
if (it == FileRefToBuildFileMap.end()) {
buildFile = this->CreateObject(cmXCodeObject::PBXBuildFile);
buildFile->AddAttribute("fileRef", fileRefObject);
FileRefToBuildFileMap[fileRefObject] = buildFile;
} else {
buildFile = it->second;
}
}
// Add this reference to current target
auto* buildPhases = target->GetAttribute("buildPhases");
if (!buildPhases) {
cmSystemTools::Error("Missing buildPhase of target");
continue;
}
auto* frameworkBuildPhase =
buildPhases->GetObject(cmXCodeObject::PBXFrameworksBuildPhase);
if (!frameworkBuildPhase) {
cmSystemTools::Error("Missing PBXFrameworksBuildPhase of buildPhase");
continue;
}
auto* buildFiles = frameworkBuildPhase->GetAttribute("files");
if (!buildFiles) {
cmSystemTools::Error("Missing files of PBXFrameworksBuildPhase");
continue;
}
2022-11-30 20:55:39 +01:00
if (buildFile) {
if (cmHasPrefix(libItem->GetFeatureName(), "WEAK_"_s)) {
auto key = std::make_pair(buildFile->GetAttribute("fileRef"),
libItem->GetFeatureName());
if (linkBuildFileSet.find(key) != linkBuildFileSet.end()) {
continue;
}
linkBuildFileSet.insert(key);
cmXCodeObject* buildObject =
this->CreateObject(cmXCodeObject::PBXBuildFile);
buildObject->AddAttribute("fileRef", key.first);
// Add settings, ATTRIBUTES, Weak flag
cmXCodeObject* settings =
this->CreateObject(cmXCodeObject::ATTRIBUTE_GROUP);
cmXCodeObject* attrs = this->CreateObject(cmXCodeObject::OBJECT_LIST);
attrs->AddObject(this->CreateString("Weak"));
settings->AddAttribute("ATTRIBUTES", attrs);
buildObject->AddAttribute("settings", settings);
buildFile = buildObject;
}
if (!buildFiles->HasObject(buildFile)) {
buildFiles->AddObject(buildFile);
}
2021-09-14 00:13:48 +02:00
}
}
// Loop over configuration types and set per-configuration info.
2018-01-26 17:06:56 +01:00
for (auto const& configName : this->CurrentConfigurationTypes) {
2019-11-11 23:01:05 +01:00
{
2013-11-03 12:27:13 +02:00
// Add object library contents as link flags.
2021-09-14 00:13:48 +02:00
BuildObjectListOrString libSearchPaths(this, true);
2017-07-20 19:35:53 +02:00
std::vector<cmSourceFile const*> objs;
gt->GetExternalObjects(objs, configName);
2018-04-23 21:13:27 +02:00
for (auto sourceFile : objs) {
if (sourceFile->GetObjectLibrary().empty()) {
2017-07-20 19:35:53 +02:00
continue;
}
2021-09-14 00:13:48 +02:00
libSearchPaths.Add(this->XCodeEscapePath(sourceFile->GetFullPath()));
2013-11-03 12:27:13 +02:00
}
2016-07-09 11:21:54 +02:00
this->AppendBuildSettingAttribute(
2021-09-14 00:13:48 +02:00
target, this->GetTargetLinkFlagsVar(gt), libSearchPaths.CreateList(),
configName);
2016-07-09 11:21:54 +02:00
}
2013-11-03 12:27:13 +02:00
// Skip link information for object libraries.
2017-04-14 19:02:05 +02:00
if (gt->GetType() == cmStateEnums::OBJECT_LIBRARY ||
gt->GetType() == cmStateEnums::STATIC_LIBRARY) {
2013-11-03 12:27:13 +02:00
continue;
2016-07-09 11:21:54 +02:00
}
2013-11-03 12:27:13 +02:00
// Compute the link library and directory information.
2021-09-14 00:13:48 +02:00
cmComputeLinkInformation* cli = gt->GetLinkInformation(configName);
if (!cli) {
continue;
2016-07-09 11:21:54 +02:00
}
// Add dependencies directly on library files.
2021-09-14 00:13:48 +02:00
for (auto const& libDep : cli->GetDepends()) {
2018-04-23 21:13:27 +02:00
target->AddDependLibrary(configName, libDep);
}
// add the library search paths
{
2021-09-14 00:13:48 +02:00
BuildObjectListOrString libSearchPaths(this, true);
2022-11-16 20:14:03 +01:00
2016-07-09 11:21:54 +02:00
std::string linkDirs;
2021-09-14 00:13:48 +02:00
for (auto const& libDir : cli->GetDirectories()) {
2018-01-26 17:06:56 +01:00
if (!libDir.empty() && libDir != "/usr/lib") {
2022-11-16 20:14:03 +01:00
cmPolicies::PolicyStatus cmp0142 =
target->GetTarget()->GetPolicyStatusCMP0142();
if (cmp0142 == cmPolicies::OLD || cmp0142 == cmPolicies::WARN) {
libSearchPaths.Add(this->XCodeEscapePath(
libDir + "/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)"));
}
2021-09-14 00:13:48 +02:00
libSearchPaths.Add(this->XCodeEscapePath(libDir));
}
}
2022-11-16 20:14:03 +01:00
2021-09-14 00:13:48 +02:00
// Add previously collected paths where to look for libraries
// that were added to "Link Binary With Libraries"
for (auto& libDir : linkSearchPaths) {
libSearchPaths.Add(this->XCodeEscapePath(libDir));
}
if (!libSearchPaths.IsEmpty()) {
this->AppendBuildSettingAttribute(target, "LIBRARY_SEARCH_PATHS",
libSearchPaths.CreateList(),
configName);
}
}
// add framework search paths
{
BuildObjectListOrString fwSearchPaths(this, true);
// Add previously collected paths where to look for frameworks
// that were added to "Link Binary With Libraries"
for (auto& fwDir : frameworkSearchPaths) {
fwSearchPaths.Add(this->XCodeEscapePath(fwDir));
}
if (!fwSearchPaths.IsEmpty()) {
this->AppendBuildSettingAttribute(target, "FRAMEWORK_SEARCH_PATHS",
fwSearchPaths.CreateList(),
configName);
}
}
2021-09-14 00:13:48 +02:00
// now add the left-over link libraries
{
2021-09-14 00:13:48 +02:00
// Keep track of framework search paths we've already added or that are
// part of the set of implicit search paths. We don't want to repeat
// them and we also need to avoid hard-coding any SDK-specific paths.
// This is essential for getting device-and-simulator builds to work,
// otherwise we end up hard-coding a path to the wrong SDK for
// SDK-provided frameworks that are added by their full path.
std::set<std::string> emitted(cli->GetFrameworkPathsEmitted());
BuildObjectListOrString libPaths(this, true);
2022-11-16 20:14:03 +01:00
BuildObjectListOrString fwSearchPaths(this, true);
2021-09-14 00:13:48 +02:00
for (auto const& libItem : configItemMap[configName]) {
auto const& libName = *libItem;
if (libName.IsPath == cmComputeLinkInformation::ItemIsPath::Yes) {
auto cleanPath = libName.Value.Value;
if (cmSystemTools::FileIsFullPath(cleanPath)) {
cleanPath = cmSystemTools::CollapseFullPath(cleanPath);
}
2022-08-04 22:12:04 +02:00
bool isFramework =
cmHasSuffix(libName.GetFeatureName(), "FRAMEWORK"_s);
if (isFramework) {
2022-11-16 20:14:03 +01:00
const auto fwDescriptor = this->SplitFrameworkPath(
cleanPath, cmGlobalGenerator::FrameworkFormat::Extended);
if (!fwDescriptor->Directory.empty() &&
emitted.insert(fwDescriptor->Directory).second) {
2022-08-04 22:12:04 +02:00
// This is a search path we had not added before and it isn't
// an implicit search path, so we need it
2022-11-16 20:14:03 +01:00
fwSearchPaths.Add(
this->XCodeEscapePath(fwDescriptor->Directory));
2021-09-14 00:13:48 +02:00
}
2022-11-03 08:47:52 +01:00
if (libName.GetFeatureName() == "__CMAKE_LINK_FRAMEWORK"_s) {
// use the full path
libPaths.Add(
libName.GetFormattedItem(this->XCodeEscapePath(cleanPath))
.Value);
} else {
2022-11-16 20:14:03 +01:00
libPaths.Add(libName
.GetFormattedItem(this->XCodeEscapePath(
fwDescriptor->GetLinkName()))
.Value);
2022-11-03 08:47:52 +01:00
}
2021-09-14 00:13:48 +02:00
} else {
2022-08-04 22:12:04 +02:00
libPaths.Add(
libName.GetFormattedItem(this->XCodeEscapePath(cleanPath))
.Value);
2021-09-14 00:13:48 +02:00
}
if ((!libName.Target || libName.Target->IsImported()) &&
2022-08-04 22:12:04 +02:00
(isFramework || IsLinkPhaseLibraryExtension(cleanPath))) {
2021-09-14 00:13:48 +02:00
// Create file reference for embedding
auto it = this->ExternalLibRefs.find(cleanPath);
if (it == this->ExternalLibRefs.end()) {
auto* buildFile =
this->CreateXCodeBuildFileFromPath(cleanPath, gt, "", nullptr);
if (buildFile) {
this->ExternalLibRefs.emplace(cleanPath, buildFile);
}
}
}
2018-01-26 17:06:56 +01:00
} else if (!libName.Target ||
libName.Target->GetType() !=
cmStateEnums::INTERFACE_LIBRARY) {
2021-09-14 00:13:48 +02:00
libPaths.Add(libName.Value.Value);
}
2018-01-26 17:06:56 +01:00
if (libName.Target && !libName.Target->IsImported()) {
target->AddDependTarget(configName, libName.Target->GetName());
2011-06-19 15:41:06 +03:00
}
}
2022-11-16 20:14:03 +01:00
if (!libPaths.IsEmpty()) {
this->AppendBuildSettingAttribute(target,
this->GetTargetLinkFlagsVar(gt),
libPaths.CreateList(), configName);
}
if (!fwSearchPaths.IsEmpty()) {
this->AppendBuildSettingAttribute(target, "FRAMEWORK_SEARCH_PATHS",
fwSearchPaths.CreateList(),
configName);
}
2021-09-14 00:13:48 +02:00
}
}
}
void cmGlobalXCodeGenerator::AddEmbeddedObjects(
cmXCodeObject* target, const std::string& copyFilesBuildPhaseName,
const std::string& embedPropertyName, const std::string& dstSubfolderSpec,
2023-05-23 16:38:00 +02:00
int actionsOnByDefault, const std::string& defaultDstPath)
2021-09-14 00:13:48 +02:00
{
cmGeneratorTarget* gt = target->GetTarget();
if (!gt) {
cmSystemTools::Error("Error no target on xobject\n");
return;
}
if (!gt->IsInBuildSystem()) {
return;
}
bool isFrameworkTarget = gt->IsFrameworkOnApple();
bool isBundleTarget = gt->GetPropertyAsBool("MACOSX_BUNDLE");
bool isCFBundleTarget = gt->IsCFBundleOnApple();
if (!(isFrameworkTarget || isBundleTarget || isCFBundleTarget)) {
return;
}
2021-11-20 13:41:27 +01:00
cmValue files = gt->GetProperty(embedPropertyName);
2021-09-14 00:13:48 +02:00
if (!files) {
return;
}
// Create an "Embedded Frameworks" build phase
auto* copyFilesBuildPhase =
this->CreateObject(cmXCodeObject::PBXCopyFilesBuildPhase);
copyFilesBuildPhase->SetComment(copyFilesBuildPhaseName);
copyFilesBuildPhase->AddAttribute("buildActionMask",
this->CreateString("2147483647"));
copyFilesBuildPhase->AddAttribute("dstSubfolderSpec",
this->CreateString(dstSubfolderSpec));
copyFilesBuildPhase->AddAttribute(
"name", this->CreateString(copyFilesBuildPhaseName));
2021-11-20 13:41:27 +01:00
if (cmValue fwEmbedPath =
2021-09-14 00:13:48 +02:00
gt->GetProperty(cmStrCat(embedPropertyName, "_PATH"))) {
copyFilesBuildPhase->AddAttribute("dstPath",
this->CreateString(*fwEmbedPath));
} else {
2023-05-23 16:38:00 +02:00
copyFilesBuildPhase->AddAttribute("dstPath",
this->CreateString(defaultDstPath));
2021-09-14 00:13:48 +02:00
}
copyFilesBuildPhase->AddAttribute("runOnlyForDeploymentPostprocessing",
this->CreateString("0"));
cmXCodeObject* buildFiles = this->CreateObject(cmXCodeObject::OBJECT_LIST);
2021-11-20 13:41:27 +01:00
// Collect all embedded frameworks and dylibs and add them to build phase
2023-07-02 19:51:09 +02:00
cmList relFiles{ *files };
2021-09-14 00:13:48 +02:00
for (std::string const& relFile : relFiles) {
cmXCodeObject* buildFile{ nullptr };
std::string filePath = relFile;
auto* genTarget = this->FindGeneratorTarget(relFile);
if (genTarget) {
// This is a target - get it's product path reference
auto* xcTarget = this->FindXCodeTarget(genTarget);
if (!xcTarget) {
cmSystemTools::Error("Can not find a target for " +
genTarget->GetName());
continue;
}
// Add the target output file as a build reference for other targets
// to link against
auto* fileRefObject = xcTarget->GetAttribute("productReference");
if (!fileRefObject) {
cmSystemTools::Error("Target " + genTarget->GetName() +
" is missing product reference");
continue;
}
auto it = this->FileRefToEmbedBuildFileMap.find(fileRefObject);
if (it == this->FileRefToEmbedBuildFileMap.end()) {
buildFile = this->CreateObject(cmXCodeObject::PBXBuildFile);
buildFile->AddAttribute("fileRef", fileRefObject);
this->FileRefToEmbedBuildFileMap[fileRefObject] = buildFile;
} else {
buildFile = it->second;
}
2021-11-20 13:41:27 +01:00
} else if (cmSystemTools::IsPathToFramework(relFile) ||
cmSystemTools::IsPathToMacOSSharedLibrary(relFile)) {
2021-09-14 00:13:48 +02:00
// This is a regular string path - create file reference
auto it = this->EmbeddedLibRefs.find(relFile);
if (it == this->EmbeddedLibRefs.end()) {
cmXCodeObject* fileRef =
this->CreateXCodeFileReferenceFromPath(relFile, gt, "", nullptr);
if (fileRef) {
buildFile = this->CreateObject(cmXCodeObject::PBXBuildFile);
buildFile->SetComment(fileRef->GetComment());
buildFile->AddAttribute("fileRef",
this->CreateObjectReference(fileRef));
}
if (!buildFile) {
cmSystemTools::Error("Can't create build file for " + relFile);
continue;
}
this->EmbeddedLibRefs.emplace(filePath, buildFile);
} else {
buildFile = it->second;
}
}
if (!buildFile) {
cmSystemTools::Error("Can't find a build file for " + relFile);
continue;
}
// Set build file configuration
cmXCodeObject* settings =
this->CreateObject(cmXCodeObject::ATTRIBUTE_GROUP);
cmXCodeObject* attrs = this->CreateObject(cmXCodeObject::OBJECT_LIST);
bool removeHeaders = actionsOnByDefault & RemoveHeadersOnCopyByDefault;
if (auto prop = gt->GetProperty(
cmStrCat(embedPropertyName, "_REMOVE_HEADERS_ON_COPY"))) {
removeHeaders = cmIsOn(*prop);
}
if (removeHeaders) {
attrs->AddObject(this->CreateString("RemoveHeadersOnCopy"));
}
bool codeSign = actionsOnByDefault & CodeSignOnCopyByDefault;
if (auto prop =
gt->GetProperty(cmStrCat(embedPropertyName, "_CODE_SIGN_ON_COPY"))) {
codeSign = cmIsOn(*prop);
}
if (codeSign) {
attrs->AddObject(this->CreateString("CodeSignOnCopy"));
}
settings->AddAttributeIfNotEmpty("ATTRIBUTES", attrs);
buildFile->AddAttributeIfNotEmpty("settings", settings);
if (!buildFiles->HasObject(buildFile)) {
buildFiles->AddObject(buildFile);
}
2016-07-09 11:21:54 +02:00
}
2021-09-14 00:13:48 +02:00
copyFilesBuildPhase->AddAttribute("files", buildFiles);
auto* buildPhases = target->GetAttribute("buildPhases");
// Embed-something build phases must be inserted before the post-build
// command because that command is expected to be last
buildPhases->InsertObject(buildPhases->GetObjectCount() - 1,
copyFilesBuildPhase);
}
void cmGlobalXCodeGenerator::AddEmbeddedFrameworks(cmXCodeObject* target)
{
static const auto dstSubfolderSpec = "10";
2022-08-04 22:12:04 +02:00
// Despite the name, by default Xcode uses "Embed Frameworks" build phase
// for both frameworks and dynamic libraries
2021-09-14 00:13:48 +02:00
this->AddEmbeddedObjects(target, "Embed Frameworks",
"XCODE_EMBED_FRAMEWORKS", dstSubfolderSpec,
NoActionOnCopyByDefault);
}
2022-03-29 21:10:50 +02:00
void cmGlobalXCodeGenerator::AddEmbeddedPlugIns(cmXCodeObject* target)
{
static const auto dstSubfolderSpec = "13";
this->AddEmbeddedObjects(target, "Embed PlugIns", "XCODE_EMBED_PLUGINS",
dstSubfolderSpec, NoActionOnCopyByDefault);
}
2021-09-14 00:13:48 +02:00
void cmGlobalXCodeGenerator::AddEmbeddedAppExtensions(cmXCodeObject* target)
{
static const auto dstSubfolderSpec = "13";
this->AddEmbeddedObjects(target, "Embed App Extensions",
"XCODE_EMBED_APP_EXTENSIONS", dstSubfolderSpec,
RemoveHeadersOnCopyByDefault);
}
2023-05-23 16:38:00 +02:00
void cmGlobalXCodeGenerator::AddEmbeddedExtensionKitExtensions(
cmXCodeObject* target)
{
static const auto dstSubfolderSpec = "16";
this->AddEmbeddedObjects(target, "Embed App Extensions",
"XCODE_EMBED_EXTENSIONKIT_EXTENSIONS",
dstSubfolderSpec, RemoveHeadersOnCopyByDefault,
"$(EXTENSIONS_FOLDER_PATH)");
}
2016-07-09 11:21:54 +02:00
bool cmGlobalXCodeGenerator::CreateGroups(
2016-10-30 18:24:19 +01:00
std::vector<cmLocalGenerator*>& generators)
{
2018-01-26 17:06:56 +01:00
for (auto& generator : generators) {
cmMakefile* mf = generator->GetMakefile();
std::vector<cmSourceGroup> sourceGroups = mf->GetSourceGroups();
2020-08-30 11:54:41 +02:00
for (const auto& gtgt : generator->GetGeneratorTargets()) {
// Same skipping logic here as in CreateXCodeTargets so that we do not
2018-04-23 21:13:27 +02:00
// end up with (empty anyhow) ZERO_CHECK, install, or test source
// groups:
//
2021-09-14 00:13:48 +02:00
if (!gtgt->IsInBuildSystem() ||
gtgt->GetType() == cmStateEnums::GLOBAL_TARGET ||
gtgt->GetName() == CMAKE_CHECK_BUILD_SYSTEM_TARGET) {
2018-04-23 21:13:27 +02:00
continue;
}
2020-08-30 11:54:41 +02:00
auto addSourceToGroup = [this, mf, &gtgt,
2019-11-11 23:01:05 +01:00
&sourceGroups](std::string const& source) {
cmSourceGroup* sourceGroup = mf->FindSourceGroup(source, sourceGroups);
2020-08-30 11:54:41 +02:00
cmXCodeObject* pbxgroup =
this->CreateOrGetPBXGroup(gtgt.get(), sourceGroup);
std::string key = GetGroupMapKeyFromPath(gtgt.get(), source);
2019-11-11 23:01:05 +01:00
this->GroupMap[key] = pbxgroup;
};
2012-04-19 19:04:21 +03:00
// Put cmSourceFile instances in proper groups:
2018-04-23 21:13:27 +02:00
for (auto const& si : gtgt->GetAllConfigSources()) {
2018-01-26 17:06:56 +01:00
cmSourceFile const* sf = si.Source;
2019-11-11 23:01:05 +01:00
if (!sf->GetObjectLibrary().empty()) {
2017-07-20 19:35:53 +02:00
// Object library files go on the link line instead.
continue;
}
2019-11-11 23:01:05 +01:00
addSourceToGroup(sf->GetFullPath());
}
2018-04-23 21:13:27 +02:00
// Add CMakeLists.txt file for user convenience.
{
std::string listfile =
2020-02-01 23:06:01 +01:00
cmStrCat(gtgt->GetLocalGenerator()->GetCurrentSourceDirectory(),
"/CMakeLists.txt");
cmSourceFile* sf = gtgt->Makefile->GetOrCreateSource(
listfile, false, cmSourceFileLocationKind::Known);
addSourceToGroup(sf->ResolveFullPath());
2019-11-11 23:01:05 +01:00
}
// Add the Info.plist we are about to generate for an App Bundle.
if (gtgt->GetPropertyAsBool("MACOSX_BUNDLE")) {
2020-08-30 11:54:41 +02:00
std::string plist = this->ComputeInfoPListLocation(gtgt.get());
2020-02-01 23:06:01 +01:00
cmSourceFile* sf = gtgt->Makefile->GetOrCreateSource(
plist, true, cmSourceFileLocationKind::Known);
addSourceToGroup(sf->ResolveFullPath());
2018-04-23 21:13:27 +02:00
}
2010-11-13 01:00:53 +02:00
}
2016-07-09 11:21:54 +02:00
}
2015-04-27 22:25:09 +02:00
return true;
}
2016-07-09 11:21:54 +02:00
cmXCodeObject* cmGlobalXCodeGenerator::CreatePBXGroup(cmXCodeObject* parent,
2018-01-26 17:06:56 +01:00
const std::string& name)
2011-06-19 15:41:06 +03:00
{
2018-01-26 17:06:56 +01:00
cmXCodeObject* parentChildren = nullptr;
if (parent) {
2021-09-14 00:13:48 +02:00
parentChildren = parent->GetAttribute("children");
2018-01-26 17:06:56 +01:00
}
2011-06-19 15:41:06 +03:00
cmXCodeObject* group = this->CreateObject(cmXCodeObject::PBXGroup);
cmXCodeObject* groupChildren =
2016-07-09 11:21:54 +02:00
this->CreateObject(cmXCodeObject::OBJECT_LIST);
group->AddAttribute("name", this->CreateString(name));
2011-06-19 15:41:06 +03:00
group->AddAttribute("children", groupChildren);
group->AddAttribute("sourceTree", this->CreateString("<group>"));
2018-01-26 17:06:56 +01:00
if (parentChildren) {
2011-06-19 15:41:06 +03:00
parentChildren->AddObject(group);
2018-01-26 17:06:56 +01:00
}
2011-06-19 15:41:06 +03:00
return group;
}
2016-07-09 11:21:54 +02:00
cmXCodeObject* cmGlobalXCodeGenerator::CreateOrGetPBXGroup(
cmGeneratorTarget* gtgt, cmSourceGroup* sg)
{
2015-04-27 22:25:09 +02:00
std::string s;
std::string target;
2017-04-14 19:02:05 +02:00
const std::string targetFolder = gtgt->GetEffectiveFolderName();
if (!targetFolder.empty()) {
2020-02-01 23:06:01 +01:00
target = cmStrCat(targetFolder, '/');
2011-06-19 15:41:06 +03:00
}
2016-03-13 13:35:51 +01:00
target += gtgt->GetName();
2020-02-01 23:06:01 +01:00
s = cmStrCat(target, '/', sg->GetFullName());
auto it = this->GroupNameMap.find(s);
2016-07-09 11:21:54 +02:00
if (it != this->GroupNameMap.end()) {
2011-06-19 15:41:06 +03:00
return it->second;
2016-07-09 11:21:54 +02:00
}
2011-06-19 15:41:06 +03:00
it = this->TargetGroup.find(target);
2018-01-26 17:06:56 +01:00
cmXCodeObject* tgroup = nullptr;
2016-07-09 11:21:54 +02:00
if (it != this->TargetGroup.end()) {
2011-06-19 15:41:06 +03:00
tgroup = it->second;
2016-07-09 11:21:54 +02:00
} else {
2020-02-01 23:06:01 +01:00
std::vector<std::string> tgt_folders = cmTokenize(target, "/");
2015-04-27 22:25:09 +02:00
std::string curr_tgt_folder;
2016-07-09 11:21:54 +02:00
for (std::vector<std::string>::size_type i = 0; i < tgt_folders.size();
i++) {
if (i != 0) {
2014-08-03 19:52:23 +02:00
curr_tgt_folder += "/";
2016-07-09 11:21:54 +02:00
}
2014-08-03 19:52:23 +02:00
curr_tgt_folder += tgt_folders[i];
it = this->TargetGroup.find(curr_tgt_folder);
2016-07-09 11:21:54 +02:00
if (it != this->TargetGroup.end()) {
2011-06-19 15:41:06 +03:00
tgroup = it->second;
continue;
2016-07-09 11:21:54 +02:00
}
tgroup = this->CreatePBXGroup(tgroup, tgt_folders[i]);
2014-08-03 19:52:23 +02:00
this->TargetGroup[curr_tgt_folder] = tgroup;
2016-07-09 11:21:54 +02:00
if (i == 0) {
2017-07-20 19:35:53 +02:00
this->MainGroupChildren->AddObject(tgroup);
}
}
2016-07-09 11:21:54 +02:00
}
2011-06-19 15:41:06 +03:00
this->TargetGroup[target] = tgroup;
// If it's the default source group (empty name) then put the source file
// directly in the tgroup...
//
2018-04-23 21:13:27 +02:00
if (sg->GetFullName().empty()) {
this->GroupNameMap[s] = tgroup;
return tgroup;
2016-07-09 11:21:54 +02:00
}
2016-07-09 11:21:54 +02:00
// It's a recursive folder structure, let's find the real parent group
2018-04-23 21:13:27 +02:00
if (sg->GetFullName() != sg->GetName()) {
2020-02-01 23:06:01 +01:00
std::string curr_folder = cmStrCat(target, '/');
for (auto const& folder : cmTokenize(sg->GetFullName(), "\\")) {
2018-01-26 17:06:56 +01:00
curr_folder += folder;
2020-02-01 23:06:01 +01:00
auto const i_folder = this->GroupNameMap.find(curr_folder);
2016-07-09 11:21:54 +02:00
// Create new folder
if (i_folder == this->GroupNameMap.end()) {
2018-01-26 17:06:56 +01:00
cmXCodeObject* group = this->CreatePBXGroup(tgroup, folder);
2011-06-19 15:41:06 +03:00
this->GroupNameMap[curr_folder] = group;
tgroup = group;
2016-07-09 11:21:54 +02:00
} else {
2011-06-19 15:41:06 +03:00
tgroup = i_folder->second;
}
2020-02-01 23:06:01 +01:00
curr_folder += "\\";
}
2016-07-09 11:21:54 +02:00
return tgroup;
}
cmXCodeObject* group = this->CreatePBXGroup(tgroup, sg->GetName());
this->GroupNameMap[s] = group;
return group;
}
2016-07-09 11:21:54 +02:00
bool cmGlobalXCodeGenerator::CreateXCodeObjects(
cmLocalGenerator* root, std::vector<cmLocalGenerator*>& generators)
{
2010-11-13 01:00:53 +02:00
this->ClearXCodeObjects();
2018-01-26 17:06:56 +01:00
this->RootObject = nullptr;
this->MainGroupChildren = nullptr;
2021-09-14 00:13:48 +02:00
this->FrameworkGroup = nullptr;
cmXCodeObject* group = this->CreateObject(cmXCodeObject::ATTRIBUTE_GROUP);
group->AddAttribute("COPY_PHASE_STRIP", this->CreateString("NO"));
cmXCodeObject* listObjs = this->CreateObject(cmXCodeObject::OBJECT_LIST);
2019-11-11 23:01:05 +01:00
for (const std::string& CurrentConfigurationType :
this->CurrentConfigurationTypes) {
2017-07-20 19:35:53 +02:00
cmXCodeObject* buildStyle =
2016-07-09 11:21:54 +02:00
this->CreateObject(cmXCodeObject::PBXBuildStyle);
2019-11-11 23:01:05 +01:00
const std::string& name = CurrentConfigurationType;
2017-07-20 19:35:53 +02:00
buildStyle->AddAttribute("name", this->CreateString(name));
buildStyle->SetComment(name);
cmXCodeObject* sgroup = this->CreateObject(cmXCodeObject::ATTRIBUTE_GROUP);
sgroup->AddAttribute("COPY_PHASE_STRIP", this->CreateString("NO"));
buildStyle->AddAttribute("buildSettings", sgroup);
listObjs->AddObject(buildStyle);
2016-07-09 11:21:54 +02:00
}
cmXCodeObject* mainGroup = this->CreateObject(cmXCodeObject::PBXGroup);
2016-07-09 11:21:54 +02:00
this->MainGroupChildren = this->CreateObject(cmXCodeObject::OBJECT_LIST);
mainGroup->AddAttribute("children", this->MainGroupChildren);
mainGroup->AddAttribute("sourceTree", this->CreateString("<group>"));
2010-11-13 01:00:53 +02:00
// now create the cmake groups
2016-10-30 18:24:19 +01:00
if (!this->CreateGroups(generators)) {
2015-04-27 22:25:09 +02:00
return false;
2016-07-09 11:21:54 +02:00
}
cmXCodeObject* productGroup = this->CreateObject(cmXCodeObject::PBXGroup);
productGroup->AddAttribute("name", this->CreateString("Products"));
productGroup->AddAttribute("sourceTree", this->CreateString("<group>"));
2010-11-13 01:00:53 +02:00
cmXCodeObject* productGroupChildren =
this->CreateObject(cmXCodeObject::OBJECT_LIST);
productGroup->AddAttribute("children", productGroupChildren);
this->MainGroupChildren->AddObject(productGroup);
2010-11-13 01:00:53 +02:00
2021-09-14 00:13:48 +02:00
this->FrameworkGroup = this->CreateObject(cmXCodeObject::PBXGroup);
this->FrameworkGroup->AddAttribute("name", this->CreateString("Frameworks"));
this->FrameworkGroup->AddAttribute("sourceTree",
this->CreateString("<group>"));
cmXCodeObject* frameworkGroupChildren =
this->CreateObject(cmXCodeObject::OBJECT_LIST);
this->FrameworkGroup->AddAttribute("children", frameworkGroupChildren);
this->MainGroupChildren->AddObject(this->FrameworkGroup);
this->RootObject = this->CreateObject(cmXCodeObject::PBXProject);
this->RootObject->SetComment("Project object");
2012-02-18 12:40:36 +02:00
2020-02-01 23:06:01 +01:00
std::string project_id = cmStrCat("PROJECT_", root->GetProjectName());
2016-07-09 11:21:54 +02:00
this->RootObject->SetId(
2018-01-26 17:06:56 +01:00
this->GetOrCreateId(project_id, this->RootObject->GetId()));
2012-02-18 12:40:36 +02:00
group = this->CreateObject(cmXCodeObject::ATTRIBUTE_GROUP);
2010-11-13 01:00:53 +02:00
this->RootObject->AddAttribute("mainGroup",
2016-07-09 11:21:54 +02:00
this->CreateObjectReference(mainGroup));
this->RootObject->AddAttribute("buildSettings", group);
this->RootObject->AddAttribute("buildStyles", listObjs);
this->RootObject->AddAttribute("hasScannedForEncodings",
2016-07-09 11:21:54 +02:00
this->CreateString("0"));
2017-07-20 19:35:53 +02:00
group = this->CreateObject(cmXCodeObject::ATTRIBUTE_GROUP);
group->AddAttribute("BuildIndependentTargetsInParallel",
this->CreateString("YES"));
std::ostringstream v;
v << std::setfill('0') << std::setw(4) << XcodeVersion * 10;
group->AddAttribute("LastUpgradeCheck", this->CreateString(v.str()));
this->RootObject->AddAttribute("attributes", group);
2019-11-11 23:01:05 +01:00
this->RootObject->AddAttribute("compatibilityVersion",
this->CreateString("Xcode 3.2"));
// Point Xcode at the top of the source tree.
{
2016-07-09 11:21:54 +02:00
std::string pdir =
2019-11-11 23:01:05 +01:00
this->RelativeToBinary(root->GetCurrentSourceDirectory());
2016-07-09 11:21:54 +02:00
this->RootObject->AddAttribute("projectDirPath", this->CreateString(pdir));
this->RootObject->AddAttribute("projectRoot", this->CreateString(""));
}
2010-11-13 01:00:53 +02:00
cmXCodeObject* configlist =
this->CreateObject(cmXCodeObject::XCConfigurationList);
cmXCodeObject* buildConfigurations =
this->CreateObject(cmXCodeObject::OBJECT_LIST);
2020-02-01 23:06:01 +01:00
using Configs = std::vector<std::pair<std::string, cmXCodeObject*>>;
2016-03-13 13:35:51 +01:00
Configs configs;
2018-04-23 21:13:27 +02:00
std::string defaultConfigName;
for (const auto& name : this->CurrentConfigurationTypes) {
if (defaultConfigName.empty()) {
2017-07-20 19:35:53 +02:00
defaultConfigName = name;
}
2017-07-20 19:35:53 +02:00
cmXCodeObject* config =
this->CreateObject(cmXCodeObject::XCBuildConfiguration);
config->AddAttribute("name", this->CreateString(name));
2023-05-23 16:38:00 +02:00
configs.emplace_back(name, config);
2016-07-09 11:21:54 +02:00
}
2018-04-23 21:13:27 +02:00
if (defaultConfigName.empty()) {
defaultConfigName = "Debug";
}
2018-01-26 17:06:56 +01:00
for (auto& config : configs) {
buildConfigurations->AddObject(config.second);
2016-07-09 11:21:54 +02:00
}
configlist->AddAttribute("buildConfigurations", buildConfigurations);
2020-02-01 23:06:01 +01:00
std::string comment = cmStrCat("Build configuration list for PBXProject \"",
this->CurrentProject, '"');
2016-10-30 18:24:19 +01:00
configlist->SetComment(comment);
2010-11-13 01:00:53 +02:00
configlist->AddAttribute("defaultConfigurationIsVisible",
this->CreateString("0"));
2010-11-13 01:00:53 +02:00
configlist->AddAttribute("defaultConfigurationName",
2012-04-19 19:04:21 +03:00
this->CreateString(defaultConfigName));
cmXCodeObject* buildSettings =
2016-07-09 11:21:54 +02:00
this->CreateObject(cmXCodeObject::ATTRIBUTE_GROUP);
2021-11-20 13:41:27 +01:00
cmValue sysroot = this->CurrentMakefile->GetDefinition("CMAKE_OSX_SYSROOT");
cmValue deploymentTarget =
2009-10-04 10:30:41 +03:00
this->CurrentMakefile->GetDefinition("CMAKE_OSX_DEPLOYMENT_TARGET");
2016-07-09 11:21:54 +02:00
if (sysroot) {
2021-09-14 00:13:48 +02:00
buildSettings->AddAttribute("SDKROOT", this->CreateString(*sysroot));
2016-07-09 11:21:54 +02:00
}
2017-07-20 19:35:53 +02:00
// recompute this as it may have been changed since enable language
this->ComputeArchitectures(this->CurrentMakefile);
std::string const archs = cmJoin(this->Architectures, " ");
2016-07-09 11:21:54 +02:00
if (archs.empty()) {
2015-08-17 11:37:30 +02:00
// Tell Xcode to use NATIVE_ARCH instead of ARCHS.
buildSettings->AddAttribute("ONLY_ACTIVE_ARCH", this->CreateString("YES"));
2020-08-30 11:54:41 +02:00
// When targeting macOS, use only the host architecture.
if (this->SystemName == "Darwin"_s &&
2021-09-14 00:13:48 +02:00
(!cmNonempty(sysroot) ||
cmSystemTools::LowerCase(*sysroot).find("macos") !=
2020-08-30 11:54:41 +02:00
std::string::npos)) {
buildSettings->AddAttribute("ARCHS",
this->CreateString("$(NATIVE_ARCH_ACTUAL)"));
}
2016-07-09 11:21:54 +02:00
} else {
2015-08-17 11:37:30 +02:00
// Tell Xcode to use ARCHS (ONLY_ACTIVE_ARCH defaults to NO).
2016-07-09 11:21:54 +02:00
buildSettings->AddAttribute("ARCHS", this->CreateString(archs));
}
2021-09-14 00:13:48 +02:00
if (cmNonempty(deploymentTarget)) {
2018-04-23 21:13:27 +02:00
buildSettings->AddAttribute(GetDeploymentPlatform(root->GetMakefile()),
2021-09-14 00:13:48 +02:00
this->CreateString(*deploymentTarget));
2016-07-09 11:21:54 +02:00
}
if (!this->GeneratorToolset.empty()) {
2013-03-16 19:13:01 +02:00
buildSettings->AddAttribute("GCC_VERSION",
2016-07-09 11:21:54 +02:00
this->CreateString(this->GeneratorToolset));
}
2016-10-30 18:24:19 +01:00
if (this->GetLanguageEnabled("Swift")) {
2017-04-14 19:02:05 +02:00
std::string swiftVersion;
2021-11-20 13:41:27 +01:00
if (cmValue vers = this->CurrentMakefile->GetDefinition(
2016-10-30 18:24:19 +01:00
"CMAKE_Swift_LANGUAGE_VERSION")) {
2021-09-14 00:13:48 +02:00
swiftVersion = *vers;
2019-11-11 23:01:05 +01:00
} else if (this->XcodeVersion >= 102) {
swiftVersion = "4.0";
2017-04-14 19:02:05 +02:00
} else if (this->XcodeVersion >= 83) {
swiftVersion = "3.0";
} else {
swiftVersion = "2.3";
2016-10-30 18:24:19 +01:00
}
buildSettings->AddAttribute("SWIFT_VERSION",
this->CreateString(swiftVersion));
}
2009-10-04 10:30:41 +03:00
2022-11-16 20:14:03 +01:00
std::string const symroot = this->GetSymrootDir();
2016-07-09 11:21:54 +02:00
buildSettings->AddAttribute("SYMROOT", this->CreateString(symroot));
2009-10-04 10:30:41 +03:00
2020-08-30 11:54:41 +02:00
// Inside a try_compile project, do not require signing on any platform.
if (this->CMakeInstance->GetIsInTryCompile()) {
buildSettings->AddAttribute("CODE_SIGNING_ALLOWED",
this->CreateString("NO"));
}
2023-05-23 16:38:00 +02:00
auto debugConfigs = this->GetCMakeInstance()->GetDebugConfigs();
std::set<std::string> debugConfigSet(debugConfigs.begin(),
debugConfigs.end());
2020-08-30 11:54:41 +02:00
2018-01-26 17:06:56 +01:00
for (auto& config : configs) {
2022-08-04 22:12:04 +02:00
CreateGlobalXCConfigSettings(root, config.second, config.first);
2016-03-13 13:35:51 +01:00
cmXCodeObject* buildSettingsForCfg = this->CreateFlatClone(buildSettings);
2023-05-23 16:38:00 +02:00
if (debugConfigSet.count(cmSystemTools::UpperCase(config.first)) == 0) {
buildSettingsForCfg->AddAttribute("SWIFT_COMPILATION_MODE",
this->CreateString("wholemodule"));
}
2016-03-13 13:35:51 +01:00
// Put this last so it can override existing settings
// Convert "CMAKE_XCODE_ATTRIBUTE_*" variables directly.
2018-04-23 21:13:27 +02:00
for (const auto& var : this->CurrentMakefile->GetDefinitions()) {
2020-08-30 11:54:41 +02:00
if (cmHasLiteralPrefix(var, "CMAKE_XCODE_ATTRIBUTE_")) {
2018-04-23 21:13:27 +02:00
std::string attribute = var.substr(22);
2018-01-26 17:06:56 +01:00
this->FilterConfigurationAttribute(config.first, attribute);
2016-07-09 11:21:54 +02:00
if (!attribute.empty()) {
2020-02-01 23:06:01 +01:00
std::string processed = cmGeneratorExpression::Evaluate(
2020-08-30 11:54:41 +02:00
this->CurrentMakefile->GetSafeDefinition(var),
2020-02-01 23:06:01 +01:00
this->CurrentLocalGenerator, config.first);
2016-03-13 13:35:51 +01:00
buildSettingsForCfg->AddAttribute(attribute,
2016-07-09 11:21:54 +02:00
this->CreateString(processed));
2016-03-13 13:35:51 +01:00
}
}
2016-07-09 11:21:54 +02:00
}
2016-03-13 13:35:51 +01:00
// store per-config buildSettings into configuration object
2018-01-26 17:06:56 +01:00
config.second->AddAttribute("buildSettings", buildSettingsForCfg);
2016-07-09 11:21:54 +02:00
}
2009-10-04 10:30:41 +03:00
2010-11-13 01:00:53 +02:00
this->RootObject->AddAttribute("buildConfigurationList",
2016-07-09 11:21:54 +02:00
this->CreateObjectReference(configlist));
std::vector<cmXCodeObject*> targets;
2018-01-26 17:06:56 +01:00
for (auto& generator : generators) {
if (!this->CreateXCodeTargets(generator, targets)) {
2016-10-30 18:24:19 +01:00
return false;
}
2021-09-14 00:13:48 +02:00
for (auto const& ccRoot : this->CustomCommandRoots) {
if (ccRoot.second.size() > 1) {
std::string e = "The custom command ";
std::vector<std::string> const& outputs =
ccRoot.first->GetCustomCommand()->GetOutputs();
if (!outputs.empty()) {
e = cmStrCat(e, "generating\n ", outputs[0]);
} else {
e = cmStrCat(e, "driven by\n ", ccRoot.first->GetFullPath());
}
e = cmStrCat(e, "\nis attached to multiple targets:");
for (cmGeneratorTarget const* gt : ccRoot.second) {
e = cmStrCat(e, "\n ", gt->GetName());
}
e = cmStrCat(
e,
"\nbut none of these is a common dependency of the other(s). "
"This is not allowed by the Xcode \"new build system\".");
generator->IssueMessage(MessageType::FATAL_ERROR, e);
return false;
}
}
this->CustomCommandRoots.clear();
2016-07-09 11:21:54 +02:00
}
// loop over all targets and add link and depend info
2018-01-26 17:06:56 +01:00
for (auto t : targets) {
this->AddDependAndLinkInformation(t);
2021-09-14 00:13:48 +02:00
this->AddEmbeddedFrameworks(t);
2022-03-29 21:10:50 +02:00
this->AddEmbeddedPlugIns(t);
2021-09-14 00:13:48 +02:00
this->AddEmbeddedAppExtensions(t);
2023-05-23 16:38:00 +02:00
this->AddEmbeddedExtensionKitExtensions(t);
2021-09-14 00:13:48 +02:00
// Inherit project-wide values for any target-specific search paths.
this->InheritBuildSettingAttribute(t, "HEADER_SEARCH_PATHS");
this->InheritBuildSettingAttribute(t, "SYSTEM_HEADER_SEARCH_PATHS");
this->InheritBuildSettingAttribute(t, "FRAMEWORK_SEARCH_PATHS");
this->InheritBuildSettingAttribute(t, "SYSTEM_FRAMEWORK_SEARCH_PATHS");
this->InheritBuildSettingAttribute(t, "LIBRARY_SEARCH_PATHS");
this->InheritBuildSettingAttribute(t, "LD_RUNPATH_SEARCH_PATHS");
this->InheritBuildSettingAttribute(t, "GCC_PREPROCESSOR_DEFINITIONS");
this->InheritBuildSettingAttribute(t, "OTHER_CFLAGS");
this->InheritBuildSettingAttribute(t, "OTHER_LDFLAGS");
2023-05-23 16:38:00 +02:00
this->InheritBuildSettingAttribute(t, "OTHER_SWIFT_FLAGS");
this->InheritBuildSettingAttribute(t,
"SWIFT_ACTIVE_COMPILATION_CONDITIONS");
2021-09-14 00:13:48 +02:00
}
if (this->XcodeBuildSystem == BuildSystem::One) {
this->CreateXCodeDependHackMakefile(targets);
2016-07-09 11:21:54 +02:00
}
// now add all targets to the root object
cmXCodeObject* allTargets = this->CreateObject(cmXCodeObject::OBJECT_LIST);
2018-01-26 17:06:56 +01:00
for (auto t : targets) {
allTargets->AddObject(t);
2021-09-14 00:13:48 +02:00
cmXCodeObject* productRef = t->GetAttribute("productReference");
2016-07-09 11:21:54 +02:00
if (productRef) {
productGroupChildren->AddObject(productRef->GetObject());
}
2016-07-09 11:21:54 +02:00
}
this->RootObject->AddAttribute("targets", allTargets);
2015-04-27 22:25:09 +02:00
return true;
}
2022-11-16 20:14:03 +01:00
std::string cmGlobalXCodeGenerator::GetSymrootDir() const
2012-04-19 19:04:21 +03:00
{
2022-11-16 20:14:03 +01:00
return cmStrCat(this->CMakeInstance->GetHomeOutputDirectory(), "/build");
}
std::string cmGlobalXCodeGenerator::GetTargetTempDir(
cmGeneratorTarget const* gt, std::string const& configName) const
{
// Use a path inside the SYMROOT.
return cmStrCat(this->GetSymrootDir(), '/', gt->GetName(), ".build/",
configName);
2012-04-19 19:04:21 +03:00
}
2017-07-20 19:35:53 +02:00
void cmGlobalXCodeGenerator::ComputeArchitectures(cmMakefile* mf)
{
this->Architectures.clear();
2023-07-02 19:51:09 +02:00
cmList::append(this->Architectures,
mf->GetDefinition("CMAKE_OSX_ARCHITECTURES"));
2017-07-20 19:35:53 +02:00
2021-09-14 00:13:48 +02:00
if (this->Architectures.empty()) {
2023-07-02 19:51:09 +02:00
cmList::append(this->Architectures,
mf->GetDefinition("_CMAKE_APPLE_ARCHS_DEFAULT"));
2021-09-14 00:13:48 +02:00
}
2017-07-20 19:35:53 +02:00
if (this->Architectures.empty()) {
2020-08-30 11:54:41 +02:00
// With no ARCHS we use ONLY_ACTIVE_ARCH and possibly a
// platform-specific default ARCHS placeholder value.
2017-07-20 19:35:53 +02:00
// Look up the arch that Xcode chooses in this case.
2021-11-20 13:41:27 +01:00
if (cmValue arch = mf->GetDefinition("CMAKE_XCODE_ARCHS")) {
2021-09-14 00:13:48 +02:00
this->ObjectDirArchDefault = *arch;
2018-08-09 18:06:22 +02:00
// We expect only one arch but choose the first just in case.
std::string::size_type pos = this->ObjectDirArchDefault.find(';');
if (pos != std::string::npos) {
this->ObjectDirArchDefault = this->ObjectDirArchDefault.substr(0, pos);
}
2017-07-20 19:35:53 +02:00
}
}
this->ComputeObjectDirArch(mf);
}
void cmGlobalXCodeGenerator::ComputeObjectDirArch(cmMakefile* mf)
{
if (this->Architectures.size() > 1 || this->UseEffectivePlatformName(mf)) {
this->ObjectDirArch = "$(CURRENT_ARCH)";
} else if (!this->Architectures.empty()) {
this->ObjectDirArch = this->Architectures[0];
} else {
this->ObjectDirArch = this->ObjectDirArchDefault;
}
}
2021-09-14 00:13:48 +02:00
void cmGlobalXCodeGenerator::CreateXCodeDependHackMakefile(
std::vector<cmXCodeObject*>& targets)
2010-11-13 01:00:53 +02:00
{
2019-11-11 23:01:05 +01:00
cmGeneratedFileStream makefileStream(this->CurrentXCodeHackMakefile);
2016-07-09 11:21:54 +02:00
if (!makefileStream) {
2019-11-11 23:01:05 +01:00
cmSystemTools::Error("Could not create " + this->CurrentXCodeHackMakefile);
return;
2016-07-09 11:21:54 +02:00
}
makefileStream.SetCopyIfDifferent(true);
// one more pass for external depend information not handled
// correctly by xcode
2016-07-09 11:21:54 +02:00
/* clang-format off */
makefileStream << "# DO NOT EDIT\n";
makefileStream << "# This makefile makes sure all linkable targets are\n";
2011-06-19 15:41:06 +03:00
makefileStream << "# up-to-date with anything they link to\n"
"default:\n"
"\techo \"Do not invoke directly\"\n"
"\n";
2016-07-09 11:21:54 +02:00
/* clang-format on */
2017-07-20 19:35:53 +02:00
std::set<std::string> dummyRules;
// Write rules to help Xcode relink things at the right time.
2016-07-09 11:21:54 +02:00
/* clang-format off */
2010-11-13 01:00:53 +02:00
makefileStream <<
"# Rules to remove targets that are older than anything to which they\n"
"# link. This forces Xcode to relink the targets from scratch. It\n"
2010-11-13 01:00:53 +02:00
"# does not seem to check these dependencies itself.\n";
2016-07-09 11:21:54 +02:00
/* clang-format on */
2018-04-23 21:13:27 +02:00
for (const auto& configName : this->CurrentConfigurationTypes) {
2018-01-26 17:06:56 +01:00
for (auto target : targets) {
2016-07-09 11:21:54 +02:00
cmGeneratorTarget* gt = target->GetTarget();
2017-04-14 19:02:05 +02:00
if (gt->GetType() == cmStateEnums::EXECUTABLE ||
2017-07-20 19:35:53 +02:00
gt->GetType() == cmStateEnums::OBJECT_LIBRARY ||
2017-04-14 19:02:05 +02:00
gt->GetType() == cmStateEnums::STATIC_LIBRARY ||
gt->GetType() == cmStateEnums::SHARED_LIBRARY ||
gt->GetType() == cmStateEnums::MODULE_LIBRARY) {
2011-06-19 15:41:06 +03:00
// Declare an entry point for the target post-build phase.
2018-04-23 21:13:27 +02:00
makefileStream << this->PostBuildMakeTarget(gt->GetName(), configName)
2011-06-19 15:41:06 +03:00
<< ":\n";
2016-07-09 11:21:54 +02:00
}
2011-06-19 15:41:06 +03:00
2017-04-14 19:02:05 +02:00
if (gt->GetType() == cmStateEnums::EXECUTABLE ||
2017-07-20 19:35:53 +02:00
gt->GetType() == cmStateEnums::STATIC_LIBRARY ||
2017-04-14 19:02:05 +02:00
gt->GetType() == cmStateEnums::SHARED_LIBRARY ||
gt->GetType() == cmStateEnums::MODULE_LIBRARY) {
2015-11-17 17:22:37 +01:00
std::string tfull = gt->GetFullPath(configName);
2018-08-09 18:06:22 +02:00
std::string trel = this->ConvertToRelativeForMake(tfull);
2011-06-19 15:41:06 +03:00
// Add this target to the post-build phases of its dependencies.
2020-02-01 23:06:01 +01:00
auto const y = target->GetDependTargets().find(configName);
2016-07-09 11:21:54 +02:00
if (y != target->GetDependTargets().end()) {
2018-04-23 21:13:27 +02:00
for (auto const& deptgt : y->second) {
makefileStream << this->PostBuildMakeTarget(deptgt, configName)
<< ": " << trel << "\n";
2011-06-19 15:41:06 +03:00
}
2016-07-09 11:21:54 +02:00
}
2011-06-19 15:41:06 +03:00
2017-07-20 19:35:53 +02:00
std::vector<cmGeneratorTarget*> objlibs;
gt->GetObjectLibrariesCMP0026(objlibs);
2018-04-23 21:13:27 +02:00
for (auto objLib : objlibs) {
makefileStream << this->PostBuildMakeTarget(objLib->GetName(),
configName)
2017-07-20 19:35:53 +02:00
<< ": " << trel << "\n";
}
2011-06-19 15:41:06 +03:00
// Create a rule for this target.
makefileStream << trel << ":";
// List dependencies if any exist.
2020-02-01 23:06:01 +01:00
auto const x = target->GetDependLibraries().find(configName);
2016-07-09 11:21:54 +02:00
if (x != target->GetDependLibraries().end()) {
2018-04-23 21:13:27 +02:00
for (auto const& deplib : x->second) {
2018-08-09 18:06:22 +02:00
std::string file = this->ConvertToRelativeForMake(deplib);
2017-07-20 19:35:53 +02:00
makefileStream << "\\\n\t" << file;
dummyRules.insert(file);
}
2016-07-09 11:21:54 +02:00
}
2017-07-20 19:35:53 +02:00
2018-04-23 21:13:27 +02:00
for (auto objLib : objlibs) {
2017-07-20 19:35:53 +02:00
2018-04-23 21:13:27 +02:00
const std::string objLibName = objLib->GetName();
2022-11-16 20:14:03 +01:00
std::string d = cmStrCat(this->GetTargetTempDir(gt, configName),
"/lib", objLibName, ".a");
2017-07-20 19:35:53 +02:00
2018-08-09 18:06:22 +02:00
std::string dependency = this->ConvertToRelativeForMake(d);
2017-07-20 19:35:53 +02:00
makefileStream << "\\\n\t" << dependency;
dummyRules.insert(dependency);
}
// Write the action to remove the target if it is out of date.
makefileStream << "\n";
makefileStream << "\t/bin/rm -f "
2018-08-09 18:06:22 +02:00
<< this->ConvertToRelativeForMake(tfull) << "\n";
// if building for more than one architecture
2018-04-23 21:13:27 +02:00
// then remove those executables as well
2016-07-09 11:21:54 +02:00
if (this->Architectures.size() > 1) {
2022-11-16 20:14:03 +01:00
std::string universal =
cmStrCat(this->GetTargetTempDir(gt, configName), "/$(OBJDIR)/");
2018-04-23 21:13:27 +02:00
for (const auto& architecture : this->Architectures) {
2020-02-01 23:06:01 +01:00
std::string universalFile = cmStrCat(universal, architecture, '/',
gt->GetFullName(configName));
makefileStream << "\t/bin/rm -f "
2018-08-09 18:06:22 +02:00
<< this->ConvertToRelativeForMake(universalFile)
<< "\n";
}
}
2016-07-09 11:21:54 +02:00
makefileStream << "\n\n";
}
}
2016-07-09 11:21:54 +02:00
}
2017-07-20 19:35:53 +02:00
makefileStream << "\n\n"
<< "# For each target create a dummy rule"
<< "so the target does not have to exist\n";
2018-01-26 17:06:56 +01:00
for (auto const& dummyRule : dummyRules) {
makefileStream << dummyRule << ":\n";
2017-07-20 19:35:53 +02:00
}
}
2016-07-09 11:21:54 +02:00
void cmGlobalXCodeGenerator::OutputXCodeProject(
cmLocalGenerator* root, std::vector<cmLocalGenerator*>& generators)
{
2018-01-26 17:06:56 +01:00
if (generators.empty()) {
return;
2016-07-09 11:21:54 +02:00
}
if (!this->CreateXCodeObjects(root, generators)) {
2015-04-27 22:25:09 +02:00
return;
2016-07-09 11:21:54 +02:00
}
2020-02-01 23:06:01 +01:00
std::string xcodeDir = cmStrCat(root->GetCurrentBinaryDirectory(), '/',
root->GetProjectName(), ".xcodeproj");
2019-11-11 23:01:05 +01:00
cmSystemTools::MakeDirectory(xcodeDir);
std::string xcodeProjFile = xcodeDir + "/project.pbxproj";
2019-11-11 23:01:05 +01:00
cmGeneratedFileStream fout(xcodeProjFile);
fout.SetCopyIfDifferent(true);
2016-07-09 11:21:54 +02:00
if (!fout) {
return;
2016-07-09 11:21:54 +02:00
}
this->WriteXCodePBXProj(fout, root, generators);
2017-07-20 19:35:53 +02:00
2019-11-11 23:01:05 +01:00
bool hasGeneratedSchemes = this->OutputXCodeSharedSchemes(xcodeDir, root);
this->OutputXCodeWorkspaceSettings(xcodeDir, hasGeneratedSchemes);
2017-07-20 19:35:53 +02:00
this->ClearXCodeObjects();
2012-02-18 12:40:36 +02:00
// Since this call may have created new cache entries, save the cache:
//
2015-08-17 11:37:30 +02:00
root->GetMakefile()->GetCMakeInstance()->SaveCache(
2016-03-13 13:35:51 +01:00
root->GetBinaryDirectory());
}
2019-11-11 23:01:05 +01:00
bool cmGlobalXCodeGenerator::OutputXCodeSharedSchemes(
const std::string& xcProjDir, cmLocalGenerator* root)
2017-07-20 19:35:53 +02:00
{
2018-01-26 17:06:56 +01:00
// collect all tests for the targets
std::map<std::string, cmXCodeScheme::TestObjects> testables;
2020-08-30 11:54:41 +02:00
for (const auto& obj : this->XCodeObjects) {
2018-01-26 17:06:56 +01:00
if (obj->GetType() != cmXCodeObject::OBJECT ||
obj->GetIsA() != cmXCodeObject::PBXNativeTarget) {
continue;
}
if (!obj->GetTarget()->IsXCTestOnApple()) {
continue;
}
2021-11-20 13:41:27 +01:00
cmValue testee = obj->GetTarget()->GetProperty("XCTEST_TESTEE");
2018-01-26 17:06:56 +01:00
if (!testee) {
continue;
}
2020-08-30 11:54:41 +02:00
testables[*testee].push_back(obj.get());
2018-01-26 17:06:56 +01:00
}
// generate scheme
2019-11-11 23:01:05 +01:00
bool ret = false;
// Since the lowest available Xcode version for testing was 6.4,
// I'm setting this as a limit then
if (this->XcodeVersion >= 64) {
2020-08-30 11:54:41 +02:00
for (const auto& obj : this->XCodeObjects) {
2019-11-11 23:01:05 +01:00
if (obj->GetType() == cmXCodeObject::OBJECT &&
(obj->GetIsA() == cmXCodeObject::PBXNativeTarget ||
obj->GetIsA() == cmXCodeObject::PBXAggregateTarget) &&
(root->GetMakefile()->GetCMakeInstance()->GetIsInTryCompile() ||
obj->GetTarget()->GetPropertyAsBool("XCODE_GENERATE_SCHEME"))) {
const std::string& targetName = obj->GetTarget()->GetName();
2020-08-30 11:54:41 +02:00
cmXCodeScheme schm(root, obj.get(), testables[targetName],
2019-11-11 23:01:05 +01:00
this->CurrentConfigurationTypes,
this->XcodeVersion);
schm.WriteXCodeSharedScheme(xcProjDir,
this->RelativeToSource(xcProjDir));
ret = true;
}
2017-07-20 19:35:53 +02:00
}
}
2019-11-11 23:01:05 +01:00
return ret;
2017-07-20 19:35:53 +02:00
}
void cmGlobalXCodeGenerator::OutputXCodeWorkspaceSettings(
2019-11-11 23:01:05 +01:00
const std::string& xcProjDir, bool hasGeneratedSchemes)
2017-07-20 19:35:53 +02:00
{
2020-02-01 23:06:01 +01:00
std::string xcodeSharedDataDir =
cmStrCat(xcProjDir, "/project.xcworkspace/xcshareddata");
2017-07-20 19:35:53 +02:00
cmSystemTools::MakeDirectory(xcodeSharedDataDir);
2020-02-01 23:06:01 +01:00
std::string workspaceSettingsFile =
cmStrCat(xcodeSharedDataDir, "/WorkspaceSettings.xcsettings");
2017-07-20 19:35:53 +02:00
2019-11-11 23:01:05 +01:00
cmGeneratedFileStream fout(workspaceSettingsFile);
2017-07-20 19:35:53 +02:00
fout.SetCopyIfDifferent(true);
if (!fout) {
return;
}
cmXMLWriter xout(fout);
xout.StartDocument();
xout.Doctype("plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\""
"\"http://www.apple.com/DTDs/PropertyList-1.0.dtd\"");
xout.StartElement("plist");
xout.Attribute("version", "1.0");
xout.StartElement("dict");
2018-08-09 18:06:22 +02:00
if (this->XcodeVersion >= 100) {
xout.Element("key", "BuildSystemType");
2021-09-14 00:13:48 +02:00
switch (this->XcodeBuildSystem) {
case BuildSystem::One:
xout.Element("string", "Original");
if (this->XcodeVersion >= 130) {
xout.Element("key", "DisableBuildSystemDeprecationDiagnostic");
} else {
xout.Element("key", "DisableBuildSystemDeprecationWarning");
}
xout.Element("true");
break;
case BuildSystem::Twelve:
xout.Element("string", "Latest");
break;
}
2018-08-09 18:06:22 +02:00
}
2019-11-11 23:01:05 +01:00
if (hasGeneratedSchemes) {
2018-08-09 18:06:22 +02:00
xout.Element("key",
"IDEWorkspaceSharedSettings_AutocreateContextsIfNeeded");
xout.Element("false");
}
2017-07-20 19:35:53 +02:00
xout.EndElement(); // dict
xout.EndElement(); // plist
xout.EndDocument();
}
2016-07-09 11:21:54 +02:00
void cmGlobalXCodeGenerator::WriteXCodePBXProj(std::ostream& fout,
cmLocalGenerator*,
std::vector<cmLocalGenerator*>&)
{
2015-08-17 11:37:30 +02:00
SortXCodeObjects();
fout << "// !$*UTF8*$!\n";
fout << "{\n";
cmXCodeObject::Indent(1, fout);
fout << "archiveVersion = 1;\n";
cmXCodeObject::Indent(1, fout);
fout << "classes = {\n";
cmXCodeObject::Indent(1, fout);
fout << "};\n";
cmXCodeObject::Indent(1, fout);
2019-11-11 23:01:05 +01:00
fout << "objectVersion = 46;\n";
2017-07-20 19:35:53 +02:00
cmXCode21Object::PrintList(this->XCodeObjects, fout);
cmXCodeObject::Indent(1, fout);
2015-08-17 11:37:30 +02:00
fout << "rootObject = " << this->RootObject->GetId()
<< " /* Project object */;\n";
fout << "}\n";
}
2012-04-19 19:04:21 +03:00
const char* cmGlobalXCodeGenerator::GetCMakeCFGIntDir() const
2009-10-04 10:30:41 +03:00
{
2017-07-20 19:35:53 +02:00
return "$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)";
2009-10-04 10:30:41 +03:00
}
2016-07-09 11:21:54 +02:00
std::string cmGlobalXCodeGenerator::ExpandCFGIntDir(
const std::string& str, const std::string& config) const
2014-08-03 19:52:23 +02:00
{
std::string replace1 = "$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)";
std::string replace2 = "$(CONFIGURATION)";
std::string tmp = str;
2016-07-09 11:21:54 +02:00
for (std::string::size_type i = tmp.find(replace1); i != std::string::npos;
i = tmp.find(replace1, i)) {
2014-08-03 19:52:23 +02:00
tmp.replace(i, replace1.size(), config);
i += config.size();
2016-07-09 11:21:54 +02:00
}
for (std::string::size_type i = tmp.find(replace2); i != std::string::npos;
i = tmp.find(replace2, i)) {
2014-08-03 19:52:23 +02:00
tmp.replace(i, replace2.size(), config);
i += config.size();
2016-07-09 11:21:54 +02:00
}
2014-08-03 19:52:23 +02:00
return tmp;
}
2023-05-23 16:38:00 +02:00
cmDocumentationEntry cmGlobalXCodeGenerator::GetDocumentation()
{
2023-05-23 16:38:00 +02:00
return { cmGlobalXCodeGenerator::GetActualName(),
"Generate Xcode project files." };
}
2018-04-23 21:13:27 +02:00
std::string cmGlobalXCodeGenerator::ConvertToRelativeForMake(
std::string const& p)
{
2015-11-17 17:22:37 +01:00
return cmSystemTools::ConvertToOutputPath(p);
}
2019-11-11 23:01:05 +01:00
std::string cmGlobalXCodeGenerator::RelativeToSource(const std::string& p)
2009-10-04 10:30:41 +03:00
{
2022-08-04 22:12:04 +02:00
std::string const& rootSrc =
this->CurrentRootGenerator->GetCurrentSourceDirectory();
if (cmSystemTools::IsSubDirectory(p, rootSrc)) {
return cmSystemTools::ForceToRelativePath(rootSrc, p);
}
return p;
2009-10-04 10:30:41 +03:00
}
2019-11-11 23:01:05 +01:00
std::string cmGlobalXCodeGenerator::RelativeToBinary(const std::string& p)
2009-10-04 10:30:41 +03:00
{
2021-09-14 00:13:48 +02:00
return this->CurrentRootGenerator->MaybeRelativeToCurBinDir(p);
2009-10-04 10:30:41 +03:00
}
2016-07-09 11:21:54 +02:00
std::string cmGlobalXCodeGenerator::XCodeEscapePath(const std::string& p)
{
2020-08-30 11:54:41 +02:00
if (p.find_first_of(" []") != std::string::npos) {
2020-02-01 23:06:01 +01:00
std::string t = cmStrCat('"', p, '"');
2016-07-09 11:21:54 +02:00
return t;
}
return p;
}
2016-07-09 11:21:54 +02:00
void cmGlobalXCodeGenerator::AppendDirectoryForConfig(
const std::string& prefix, const std::string& config,
const std::string& suffix, std::string& dir)
{
2017-07-20 19:35:53 +02:00
if (!config.empty()) {
dir += prefix;
dir += config;
dir += suffix;
2016-07-09 11:21:54 +02:00
}
}
2015-04-27 22:25:09 +02:00
std::string cmGlobalXCodeGenerator::LookupFlags(
2016-07-09 11:21:54 +02:00
const std::string& varNamePrefix, const std::string& varNameLang,
const std::string& varNameSuffix, const std::string& default_flags)
{
2016-07-09 11:21:54 +02:00
if (!varNameLang.empty()) {
2020-02-01 23:06:01 +01:00
std::string varName = cmStrCat(varNamePrefix, varNameLang, varNameSuffix);
2021-11-20 13:41:27 +01:00
if (cmValue varValue = this->CurrentMakefile->GetDefinition(varName)) {
2021-09-14 00:13:48 +02:00
if (!varValue->empty()) {
return *varValue;
}
}
2016-07-09 11:21:54 +02:00
}
return default_flags;
}
2009-10-04 10:30:41 +03:00
void cmGlobalXCodeGenerator::AppendDefines(BuildObjectListOrString& defs,
const char* defines_list,
bool dflag)
{
// Skip this if there are no definitions.
2016-07-09 11:21:54 +02:00
if (!defines_list) {
return;
2016-07-09 11:21:54 +02:00
}
// Expand the list of definitions.
2023-07-02 19:51:09 +02:00
cmList defines{ defines_list };
2009-10-04 10:30:41 +03:00
// Store the definitions in the string.
this->AppendDefines(defs, defines, dflag);
}
2016-07-09 11:21:54 +02:00
void cmGlobalXCodeGenerator::AppendDefines(
BuildObjectListOrString& defs, std::vector<std::string> const& defines,
bool dflag)
2009-10-04 10:30:41 +03:00
{
// GCC_PREPROCESSOR_DEFINITIONS is a space-separated list of definitions.
2009-10-04 10:30:41 +03:00
std::string def;
2018-01-26 17:06:56 +01:00
for (auto const& define : defines) {
2009-10-04 10:30:41 +03:00
// Start with -D if requested.
2023-05-23 16:38:00 +02:00
if (dflag && !cmHasLiteralPrefix(define, "-D")) {
def = cmStrCat("-D", define);
} else if (!dflag && cmHasLiteralPrefix(define, "-D")) {
def = define.substr(2);
} else {
def = define;
}
2009-10-04 10:30:41 +03:00
// Append the flag with needed escapes.
std::string tmp;
this->AppendFlag(tmp, def);
2016-07-09 11:21:54 +02:00
defs.Add(tmp);
}
2009-10-04 10:30:41 +03:00
}
void cmGlobalXCodeGenerator::AppendFlag(std::string& flags,
2018-04-23 21:13:27 +02:00
std::string const& flag) const
2009-10-04 10:30:41 +03:00
{
// Short-circuit for an empty flag.
2016-07-09 11:21:54 +02:00
if (flag.empty()) {
2009-10-04 10:30:41 +03:00
return;
2016-07-09 11:21:54 +02:00
}
2009-10-04 10:30:41 +03:00
// Separate from previous flags.
2016-07-09 11:21:54 +02:00
if (!flags.empty()) {
2009-10-04 10:30:41 +03:00
flags += " ";
2016-07-09 11:21:54 +02:00
}
2009-10-04 10:30:41 +03:00
// Check if the flag needs quoting.
bool quoteFlag =
2017-07-20 19:35:53 +02:00
flag.find_first_of("`~!@#$%^&*()+={}[]|:;\"'<>,.? ") != std::string::npos;
2009-10-04 10:30:41 +03:00
// We escape a flag as follows:
// - Place each flag in single quotes ''
2016-03-13 13:35:51 +01:00
// - Escape a single quote as \'
// - Escape a backslash as \\ since it itself is an escape
// Note that in the code below we need one more level of escapes for
// C string syntax in this source file.
2009-10-04 10:30:41 +03:00
//
// The final level of escaping is done when the string is stored
// into the project file by cmXCodeObject::PrintString.
2016-07-09 11:21:54 +02:00
if (quoteFlag) {
// Open single quote.
2009-10-04 10:30:41 +03:00
flags += "'";
2016-07-09 11:21:54 +02:00
}
2009-10-04 10:30:41 +03:00
// Flag value with escaped quotes and backslashes.
2018-04-23 21:13:27 +02:00
for (auto c : flag) {
if (c == '\'') {
2019-11-11 23:01:05 +01:00
flags += "'\\''";
2018-04-23 21:13:27 +02:00
} else if (c == '\\') {
2016-03-13 13:35:51 +01:00
flags += "\\\\";
2016-07-09 11:21:54 +02:00
} else {
2018-04-23 21:13:27 +02:00
flags += c;
2009-10-04 10:30:41 +03:00
}
2016-07-09 11:21:54 +02:00
}
2016-07-09 11:21:54 +02:00
if (quoteFlag) {
// Close single quote.
2009-10-04 10:30:41 +03:00
flags += "'";
2016-07-09 11:21:54 +02:00
}
}
2016-07-09 11:21:54 +02:00
std::string cmGlobalXCodeGenerator::ComputeInfoPListLocation(
cmGeneratorTarget* target)
{
2020-02-01 23:06:01 +01:00
std::string plist =
cmStrCat(target->GetLocalGenerator()->GetCurrentBinaryDirectory(),
"/CMakeFiles/", target->GetName(), ".dir/Info.plist");
return plist;
}
2010-03-17 14:00:29 +02:00
// Return true if the generated build tree may contain multiple builds.
// i.e. "Can I build Debug and Release in the same tree?"
2016-10-30 18:24:19 +01:00
bool cmGlobalXCodeGenerator::IsMultiConfig() const
2010-03-17 14:00:29 +02:00
{
2017-07-20 19:35:53 +02:00
// Newer Xcode versions are multi config:
return true;
}
bool cmGlobalXCodeGenerator::HasKnownObjectFileLocation(
2022-08-04 22:12:04 +02:00
cmTarget const& target, std::string* reason) const
2017-07-20 19:35:53 +02:00
{
2022-08-04 22:12:04 +02:00
auto objectDirArch = GetTargetObjectDirArch(target, this->ObjectDirArch);
if (objectDirArch.find('$') != std::string::npos) {
2018-01-26 17:06:56 +01:00
if (reason != nullptr) {
2017-07-20 19:35:53 +02:00
*reason = " under Xcode with multiple architectures";
}
2010-03-17 14:00:29 +02:00
return false;
2016-07-09 11:21:54 +02:00
}
2010-03-17 14:00:29 +02:00
return true;
}
2012-04-19 19:04:21 +03:00
2017-04-14 19:02:05 +02:00
bool cmGlobalXCodeGenerator::UseEffectivePlatformName(cmMakefile* mf) const
{
2021-11-20 13:41:27 +01:00
cmValue epnValue = this->GetCMakeInstance()->GetState()->GetGlobalProperty(
2020-08-30 11:54:41 +02:00
"XCODE_EMIT_EFFECTIVE_PLATFORM_NAME");
2017-04-14 19:02:05 +02:00
if (!epnValue) {
2018-04-23 21:13:27 +02:00
return mf->PlatformIsAppleEmbedded();
2017-04-14 19:02:05 +02:00
}
2020-08-30 11:54:41 +02:00
return cmIsOn(*epnValue);
2017-04-14 19:02:05 +02:00
}
2017-07-20 19:35:53 +02:00
bool cmGlobalXCodeGenerator::ShouldStripResourcePath(cmMakefile*) const
{
// Xcode determines Resource location itself
return true;
}
2016-07-09 11:21:54 +02:00
void cmGlobalXCodeGenerator::ComputeTargetObjectDirectory(
cmGeneratorTarget* gt) const
2012-04-19 19:04:21 +03:00
{
2022-08-04 22:12:04 +02:00
auto objectDirArch = GetTargetObjectDirArch(*gt, this->ObjectDirArch);
2022-11-16 20:14:03 +01:00
gt->ObjectDirectory =
cmStrCat(this->GetTargetTempDir(gt, this->GetCMakeCFGIntDir()),
"/$(OBJECT_FILE_DIR_normal:base)/", objectDirArch, '/');
2012-04-19 19:04:21 +03:00
}
2018-04-23 21:13:27 +02:00
std::string cmGlobalXCodeGenerator::GetDeploymentPlatform(const cmMakefile* mf)
{
switch (mf->GetAppleSDKType()) {
case cmMakefile::AppleSDK::AppleTVOS:
case cmMakefile::AppleSDK::AppleTVSimulator:
return "TVOS_DEPLOYMENT_TARGET";
case cmMakefile::AppleSDK::IPhoneOS:
case cmMakefile::AppleSDK::IPhoneSimulator:
return "IPHONEOS_DEPLOYMENT_TARGET";
case cmMakefile::AppleSDK::WatchOS:
case cmMakefile::AppleSDK::WatchSimulator:
return "WATCHOS_DEPLOYMENT_TARGET";
case cmMakefile::AppleSDK::MacOS:
default:
return "MACOSX_DEPLOYMENT_TARGET";
}
}