CMake/Source/cmGlobalXCodeGenerator.cxx

2042 lines
70 KiB
C++
Raw Normal View History

2005-01-25 01:35:54 +03:00
/*=========================================================================
Program: CMake - Cross-Platform Makefile Generator
Module: $RCSfile$
Language: C++
Date: $Date$
Version: $Revision$
Copyright (c) 2002 Kitware, Inc., Insight Consortium. All rights reserved.
See Copyright.txt or http://www.cmake.org/HTML/Copyright.html for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notices for more information.
=========================================================================*/
#include "cmGlobalXCodeGenerator.h"
#include "cmGlobalXCode21Generator.h"
2005-01-25 01:35:54 +03:00
#include "cmLocalXCodeGenerator.h"
#include "cmMakefile.h"
#include "cmXCodeObject.h"
2005-09-03 00:29:32 +04:00
#include "cmXCode21Object.h"
2005-01-25 01:35:54 +03:00
#include "cmake.h"
#include "cmGeneratedFileStream.h"
2005-01-28 00:11:44 +03:00
#include "cmSourceFile.h"
#include "cmOrderLinkDirectories.h"
#if defined(CMAKE_BUILD_WITH_CMAKE)
#include "cmXMLParser.h"
// parse the xml file storing the installed version of Xcode on
// the machine
class cmXcodeVersionParser : public cmXMLParser
{
public:
2005-07-21 06:23:14 +04:00
void StartElement(const char* , const char** )
{
m_Data = "";
}
void EndElement(const char* name)
{
if(strcmp(name, "key") == 0)
{
m_Key = m_Data;
}
else if(strcmp(name, "string") == 0)
{
if(m_Key == "CFBundleShortVersionString")
{
m_Version = (int)(10.0 * atof(m_Data.c_str()));
}
}
}
void CharacterDataHandler(const char* data, int length)
{
m_Data.append(data, length);
}
int m_Version;
std::string m_Key;
std::string m_Data;
};
#endif
2005-02-04 01:42:55 +03:00
//TODO
2005-03-17 23:35:44 +03:00
// add OSX application stuff
2005-02-04 01:42:55 +03:00
2005-01-25 01:35:54 +03:00
//----------------------------------------------------------------------------
cmGlobalXCodeGenerator::cmGlobalXCodeGenerator()
{
m_FindMakeProgramFile = "CMakeFindXCode.cmake";
m_RootObject = 0;
2005-02-09 01:12:38 +03:00
m_MainGroupChildren = 0;
2005-02-15 00:46:32 +03:00
m_SourcesGroupChildren = 0;
2005-02-18 21:32:51 +03:00
m_CurrentMakefile = 0;
m_CurrentLocalGenerator = 0;
m_XcodeVersion = 15;
}
//----------------------------------------------------------------------------
cmGlobalGenerator* cmGlobalXCodeGenerator::New()
{
#if defined(CMAKE_BUILD_WITH_CMAKE)
cmXcodeVersionParser parser;
parser.ParseFile("/Developer/Applications/Xcode.app/Contents/version.plist");
if(parser.m_Version == 15)
{
return new cmGlobalXCodeGenerator;
}
2005-07-29 18:04:01 +04:00
else if (parser.m_Version == 20)
{
cmSystemTools::Message("Xcode 2.0 not really supported by cmake, "
"using Xcode 15 generator\n");
return new cmGlobalXCodeGenerator;
}
return new cmGlobalXCode21Generator;
#else
std::cerr
<< "CMake should be built with cmake to use XCode, default to Xcode 1.5\n";
return new cmGlobalXCodeGenerator;
#endif
2005-01-25 01:35:54 +03:00
}
//----------------------------------------------------------------------------
2005-02-05 01:58:58 +03:00
void cmGlobalXCodeGenerator::EnableLanguage(std::vector<std::string>const&
lang,
2005-02-01 21:07:42 +03:00
cmMakefile * mf)
{
mf->AddDefinition("XCODE","1");
if(m_XcodeVersion == 15)
{
mf->AddDefinition("CMAKE_CFG_INTDIR",".");
}
else
{
mf->AddDefinition("CMAKE_CFG_INTDIR","$(CONFIGURATION)");
2005-09-03 00:29:32 +04:00
mf->AddCacheDefinition(
"CMAKE_CONFIGURATION_TYPES",
"Debug;Release;MinSizeRel;RelWithDebInfo",
"Semicolon separated list of supported configuration types, "
"only supports Debug, Release, MinSizeRel, and RelWithDebInfo, "
"anything else will be ignored.",
cmCacheManager::STRING);
}
2005-02-01 21:07:42 +03:00
mf->AddDefinition("CMAKE_GENERATOR_CC", "gcc");
mf->AddDefinition("CMAKE_GENERATOR_CXX", "g++");
2005-02-01 23:48:33 +03:00
mf->AddDefinition("CMAKE_GENERATOR_NO_COMPILER_ENV", "1");
2005-02-01 21:07:42 +03:00
this->cmGlobalGenerator::EnableLanguage(lang, mf);
2005-01-25 01:35:54 +03:00
}
//----------------------------------------------------------------------------
std::string cmGlobalXCodeGenerator::GenerateBuildCommand(const char* makeProgram,
const char *projectName, const char *targetName, const char* config,
bool ignoreErrors)
2005-01-25 01:35:54 +03:00
{
2005-04-29 18:07:49 +04:00
// Config is not used yet
(void) config;
2005-04-30 23:36:01 +04:00
(void) ignoreErrors;
2005-04-29 18:07:49 +04:00
2005-02-01 21:07:42 +03:00
// now build the test
if(makeProgram == 0 || !strlen(makeProgram))
2005-02-01 21:07:42 +03:00
{
cmSystemTools::Error(
"Generator cannot find the appropriate make command.");
return "";
2005-02-01 21:07:42 +03:00
}
std::string makeCommand =
cmSystemTools::ConvertToOutputPath(makeProgram);
2005-02-01 21:07:42 +03:00
std::string lowerCaseCommand = makeCommand;
cmSystemTools::LowerCase(lowerCaseCommand);
makeCommand += " -project ";
makeCommand += projectName;
2005-02-01 23:48:33 +03:00
makeCommand += ".xcode";
2005-09-03 00:29:32 +04:00
if(m_XcodeVersion > 20)
{
makeCommand += "proj";
}
bool clean = false;
if ( targetName && strcmp(targetName, "clean") == 0 )
{
clean = true;
targetName = "ALL_BUILD";
}
2005-02-25 01:46:49 +03:00
if(clean)
{
makeCommand += " clean";
}
else
{
makeCommand += " build";
2005-02-25 01:46:49 +03:00
}
makeCommand += " -target ";
2005-02-25 01:46:49 +03:00
if (targetName && strlen(targetName))
2005-02-01 21:07:42 +03:00
{
makeCommand += targetName;
}
2005-02-17 02:47:30 +03:00
else
{
makeCommand += "ALL_BUILD";
}
if(m_XcodeVersion == 15)
{
makeCommand += " -buildstyle Development ";
}
else
{
2005-09-03 00:29:32 +04:00
makeCommand += " -configuration Debug";
}
makeCommand += " OBJROOT=.";
return makeCommand;
2005-01-25 01:35:54 +03:00
}
2005-02-18 21:32:51 +03:00
//----------------------------------------------------------------------------
2005-02-15 00:46:32 +03:00
void cmGlobalXCodeGenerator::ConfigureOutputPaths()
{
// Format the library and executable output paths.
m_LibraryOutputPath =
m_CurrentMakefile->GetSafeDefinition("LIBRARY_OUTPUT_PATH");
if(m_LibraryOutputPath.size() == 0)
{
m_LibraryOutputPath = m_CurrentMakefile->GetCurrentOutputDirectory();
}
// make sure there is a trailing slash
if(m_LibraryOutputPath.size() &&
m_LibraryOutputPath[m_LibraryOutputPath.size()-1] != '/')
{
m_LibraryOutputPath += "/";
if(!cmSystemTools::MakeDirectory(m_LibraryOutputPath.c_str()))
{
cmSystemTools::Error("Error creating directory ",
m_LibraryOutputPath.c_str());
}
}
m_CurrentMakefile->AddLinkDirectory(m_LibraryOutputPath.c_str());
m_ExecutableOutputPath =
m_CurrentMakefile->GetSafeDefinition("EXECUTABLE_OUTPUT_PATH");
if(m_ExecutableOutputPath.size() == 0)
{
m_ExecutableOutputPath = m_CurrentMakefile->GetCurrentOutputDirectory();
}
// make sure there is a trailing slash
if(m_ExecutableOutputPath.size() &&
m_ExecutableOutputPath[m_ExecutableOutputPath.size()-1] != '/')
{
m_ExecutableOutputPath += "/";
if(!cmSystemTools::MakeDirectory(m_ExecutableOutputPath.c_str()))
{
cmSystemTools::Error("Error creating directory ",
m_ExecutableOutputPath.c_str());
}
}
}
2005-01-25 01:35:54 +03:00
//----------------------------------------------------------------------------
///! Create a local generator appropriate to this Global Generator
cmLocalGenerator *cmGlobalXCodeGenerator::CreateLocalGenerator()
{
cmLocalGenerator *lg = new cmLocalXCodeGenerator;
lg->SetGlobalGenerator(this);
return lg;
}
//----------------------------------------------------------------------------
void cmGlobalXCodeGenerator::Generate()
{
this->cmGlobalGenerator::Generate();
std::map<cmStdString, std::vector<cmLocalGenerator*> >::iterator it;
for(it = m_ProjectMap.begin(); it!= m_ProjectMap.end(); ++it)
2005-02-18 21:32:51 +03:00
{
cmLocalGenerator* root = it->second[0];
m_CurrentProject = root->GetMakefile()->GetProjectName();
2005-02-25 01:46:49 +03:00
this->SetCurrentLocalGenerator(root);
2005-02-18 21:32:51 +03:00
m_OutputDir = m_CurrentMakefile->GetHomeOutputDirectory();
m_OutputDir = cmSystemTools::CollapseFullPath(m_OutputDir.c_str());
cmSystemTools::SplitPath(m_OutputDir.c_str(),
m_ProjectOutputDirectoryComponents);
2005-02-18 21:32:51 +03:00
m_CurrentLocalGenerator = root;
// add ALL_BUILD, INSTALL, etc
this->AddExtraTargets(root, it->second);
// now create the project
this->OutputXCodeProject(root, it->second);
}
}
2005-02-18 21:32:51 +03:00
//----------------------------------------------------------------------------
void
cmGlobalXCodeGenerator::AddExtraTargets(cmLocalGenerator* root,
std::vector<cmLocalGenerator*>& gens)
{
cmMakefile* mf = root->GetMakefile();
// Add ALL_BUILD
const char* no_output = 0;
std::vector<std::string> no_depends;
mf->AddUtilityCommand("ALL_BUILD", false, no_output, no_depends,
"echo", "Build all projects");
2005-02-18 21:32:51 +03:00
cmTarget* allbuild = mf->FindTarget("ALL_BUILD");
// ADD install
std::string cmake_command = mf->GetRequiredDefinition("CMAKE_COMMAND");
if(m_XcodeVersion == 15)
{
mf->AddUtilityCommand("install", false, no_output, no_depends,
cmake_command.c_str(),
"-P", "cmake_install.cmake");
}
else
{
mf->AddUtilityCommand("install", false, no_output, no_depends,
cmake_command.c_str(),
"-DBUILD_TYPE=$(CONFIGURATION)",
"-P", "cmake_install.cmake");
}
2005-04-29 18:06:55 +04:00
const char* noall =
mf->GetDefinition("CMAKE_SKIP_INSTALL_ALL_DEPENDENCY");
if(!noall || cmSystemTools::IsOff(noall))
{
cmTarget* install = mf->FindTarget("install");
install->AddUtility("ALL_BUILD");
}
2005-02-18 21:32:51 +03:00
// Add RUN_TESTS target if testing has been enabled
std::string fname;
fname = mf->GetStartOutputDirectory();
fname += "/";
fname += "DartTestfile.txt";
if (cmSystemTools::FileExists(fname.c_str()))
{
std::string ctest_command =
mf->GetRequiredDefinition("CMAKE_CTEST_COMMAND");
mf->AddUtilityCommand("RUN_TESTS", false, no_output, no_depends,
ctest_command.c_str());
2005-02-18 21:32:51 +03:00
}
// Add XCODE depend helper
2005-02-18 23:45:19 +03:00
std::string dir = mf->GetCurrentOutputDirectory();
2005-02-18 21:32:51 +03:00
m_CurrentXCodeHackMakefile = dir;
2005-02-18 22:32:55 +03:00
m_CurrentXCodeHackMakefile += "/CMakeScripts";
cmSystemTools::MakeDirectory(m_CurrentXCodeHackMakefile.c_str());
2005-02-18 21:32:51 +03:00
m_CurrentXCodeHackMakefile += "/XCODE_DEPEND_HELPER.make";
cmCustomCommandLine makecommand;
makecommand.push_back("make");
makecommand.push_back("-C");
2005-02-24 04:41:03 +03:00
makecommand.push_back(dir.c_str());
makecommand.push_back("-f");
2005-02-24 04:41:03 +03:00
makecommand.push_back(m_CurrentXCodeHackMakefile.c_str());
cmCustomCommandLines commandLines;
commandLines.push_back(makecommand);
mf->AddUtilityCommand("XCODE_DEPEND_HELPER", false, no_output, no_depends,
commandLines);
2005-02-28 23:07:13 +03:00
// Add Re-Run CMake rules
this->CreateReRunCMakeFile(root);
2005-02-18 21:32:51 +03:00
// now make the allbuild depend on all the non-utility targets
// in the project
for(std::vector<cmLocalGenerator*>::iterator i = gens.begin();
i != gens.end(); ++i)
{
cmLocalGenerator* lg = *i;
if(this->IsExcluded(root, *i))
{
continue;
}
cmTargets& tgts = lg->GetMakefile()->GetTargets();
for(cmTargets::iterator l = tgts.begin(); l != tgts.end(); l++)
2005-02-17 00:35:32 +03:00
{
2005-02-18 21:32:51 +03:00
cmTarget& target = l->second;
// make all exe, shared libs and modules depend
// on the XCODE_DEPEND_HELPER target
if((target.GetType() == cmTarget::EXECUTABLE ||
target.GetType() == cmTarget::SHARED_LIBRARY ||
target.GetType() == cmTarget::MODULE_LIBRARY))
{
2005-02-18 21:32:51 +03:00
target.AddUtility("XCODE_DEPEND_HELPER");
}
2005-02-18 21:32:51 +03:00
if(target.IsInAll())
2005-02-17 00:35:32 +03:00
{
2005-02-18 21:32:51 +03:00
allbuild->AddUtility(target.GetName());
2005-02-17 00:35:32 +03:00
}
}
2005-01-25 01:35:54 +03:00
}
}
2005-02-18 21:32:51 +03:00
2005-02-28 23:07:13 +03:00
//----------------------------------------------------------------------------
void cmGlobalXCodeGenerator::CreateReRunCMakeFile(cmLocalGenerator* root)
{
cmMakefile* mf = root->GetMakefile();
std::vector<std::string> lfiles = mf->GetListFiles();
// sort the array
std::sort(lfiles.begin(), lfiles.end(), std::less<std::string>());
std::vector<std::string>::iterator new_end =
std::unique(lfiles.begin(), lfiles.end());
lfiles.erase(new_end, lfiles.end());
std::string dir = mf->GetHomeOutputDirectory();
m_CurrentReRunCMakeMakefile = dir;
m_CurrentReRunCMakeMakefile += "/CMakeScripts";
cmSystemTools::MakeDirectory(m_CurrentReRunCMakeMakefile.c_str());
m_CurrentReRunCMakeMakefile += "/ReRunCMake.make";
cmGeneratedFileStream makefileStream(m_CurrentReRunCMakeMakefile.c_str());
makefileStream << "# Generated by CMake, DO NOT EDIT\n";
makefileStream << "CMakeFiles/cmake.check_cache: ";
2005-02-28 23:07:13 +03:00
for(std::vector<std::string>::const_iterator i = lfiles.begin();
i != lfiles.end(); ++i)
{
2005-03-01 19:25:23 +03:00
makefileStream << "\\\n" << this->ConvertToRelativeForMake(i->c_str());
2005-02-28 23:07:13 +03:00
}
std::string cmake = mf->GetRequiredDefinition("CMAKE_COMMAND");
makefileStream << "\n\t" << this->ConvertToRelativeForMake(cmake.c_str())
<< " -H" << this->ConvertToRelativeForMake(
mf->GetHomeDirectory())
<< " -B" << this->ConvertToRelativeForMake(
mf->GetHomeOutputDirectory()) << "\n";
}
2005-01-25 01:35:54 +03:00
//----------------------------------------------------------------------------
void cmGlobalXCodeGenerator::ClearXCodeObjects()
{
2005-02-18 21:32:51 +03:00
m_TargetDoneSet.clear();
2005-01-25 01:35:54 +03:00
for(unsigned int i = 0; i < m_XCodeObjects.size(); ++i)
{
delete m_XCodeObjects[i];
}
m_XCodeObjects.clear();
2005-03-17 23:35:44 +03:00
m_GroupMap.clear();
m_GroupNameMap.clear();
m_TargetGroup.clear();
2005-01-25 01:35:54 +03:00
}
//----------------------------------------------------------------------------
cmXCodeObject*
cmGlobalXCodeGenerator::CreateObject(cmXCodeObject::PBXType ptype)
2005-01-25 01:35:54 +03:00
{
2005-09-03 00:29:32 +04:00
cmXCodeObject* obj;
if(m_XcodeVersion == 15)
{
obj = new cmXCodeObject(ptype, cmXCodeObject::OBJECT);
}
else
{
obj = new cmXCode21Object(ptype, cmXCodeObject::OBJECT);
}
2005-01-25 01:35:54 +03:00
m_XCodeObjects.push_back(obj);
return obj;
}
2005-01-28 00:11:44 +03:00
//----------------------------------------------------------------------------
cmXCodeObject*
cmGlobalXCodeGenerator::CreateObject(cmXCodeObject::Type type)
{
2005-01-28 00:11:44 +03:00
cmXCodeObject* obj = new cmXCodeObject(cmXCodeObject::None, type);
m_XCodeObjects.push_back(obj);
2005-01-28 00:11:44 +03:00
return obj;
}
2005-02-18 21:32:51 +03:00
//----------------------------------------------------------------------------
cmXCodeObject*
cmGlobalXCodeGenerator::CreateString(const char* s)
2005-01-28 00:11:44 +03:00
{
cmXCodeObject* obj = this->CreateObject(cmXCodeObject::STRING);
obj->SetString(s);
return obj;
}
2005-02-18 21:32:51 +03:00
//----------------------------------------------------------------------------
2005-01-29 00:00:10 +03:00
cmXCodeObject* cmGlobalXCodeGenerator::CreateObjectReference(cmXCodeObject* ref)
{
cmXCodeObject* obj = this->CreateObject(cmXCodeObject::OBJECT_REF);
obj->SetObject(ref);
return obj;
}
2005-02-18 21:32:51 +03:00
//----------------------------------------------------------------------------
2005-01-28 00:11:44 +03:00
cmXCodeObject*
cmGlobalXCodeGenerator::CreateXCodeSourceFile(cmLocalGenerator* lg,
2005-02-09 01:12:38 +03:00
cmSourceFile* sf)
2005-01-28 00:11:44 +03:00
{
2005-02-11 22:25:05 +03:00
std::string flags;
// Add flags from source file properties.
2005-02-18 22:32:55 +03:00
lg->AppendFlags(flags, sf->GetProperty("COMPILE_FLAGS"));
2005-02-11 22:25:05 +03:00
2005-01-28 00:11:44 +03:00
cmXCodeObject* fileRef = this->CreateObject(cmXCodeObject::PBXFileReference);
2005-03-17 23:35:44 +03:00
cmXCodeObject* group = m_GroupMap[sf];
cmXCodeObject* children = group->GetObject("children");
children->AddObject(fileRef);
// m_SourcesGroupChildren->AddObject(fileRef);
2005-01-28 00:11:44 +03:00
cmXCodeObject* buildFile = this->CreateObject(cmXCodeObject::PBXBuildFile);
2005-01-29 00:00:10 +03:00
buildFile->AddAttribute("fileRef", this->CreateObjectReference(fileRef));
2005-01-28 00:11:44 +03:00
cmXCodeObject* settings = this->CreateObject(cmXCodeObject::ATTRIBUTE_GROUP);
2005-02-11 22:25:05 +03:00
settings->AddAttribute("COMPILER_FLAGS", this->CreateString(flags.c_str()));
2005-01-28 00:11:44 +03:00
buildFile->AddAttribute("settings", settings);
fileRef->AddAttribute("fileEncoding", this->CreateString("4"));
2005-02-02 01:17:12 +03:00
const char* lang =
2005-02-01 23:48:33 +03:00
this->GetLanguageFromExtension(sf->GetSourceExtension().c_str());
std::string sourcecode = "sourcecode";
std::string ext = sf->GetSourceExtension();
ext = cmSystemTools::LowerCase(ext);
if(ext == "o")
2005-02-01 23:48:33 +03:00
{
2005-02-18 21:32:51 +03:00
sourcecode = "compiled.mach-o.objfile";
2005-02-02 01:17:12 +03:00
}
else if(ext == "mm")
{
sourcecode += ".cpp.objcpp";
}
else if(ext == "m")
{
sourcecode += ".cpp.objc";
}
2005-02-18 21:32:51 +03:00
else if(!lang)
{
sourcecode += ext;
sourcecode += ".";
2005-02-18 21:32:51 +03:00
sourcecode += ext;
}
2005-02-02 01:17:12 +03:00
else if(strcmp(lang, "C") == 0)
{
sourcecode += ".c.c";
2005-02-01 23:48:33 +03:00
}
else
{
2005-02-11 22:25:05 +03:00
sourcecode += ".cpp.cpp";
2005-02-01 23:48:33 +03:00
}
fileRef->AddAttribute("lastKnownFileType",
2005-02-01 23:48:33 +03:00
this->CreateString(sourcecode.c_str()));
2005-02-18 21:32:51 +03:00
std::string path =
2005-02-25 01:46:49 +03:00
this->ConvertToRelativeForXCode(sf->GetFullPath().c_str());
2005-03-22 21:32:42 +03:00
// std::string file =
// cmSystemTools::RelativePath(m_CurrentMakefile->GetHomeDirectory(),
// sf->GetFullPath().c_str());
std::string dir;
std::string file;
cmSystemTools::SplitProgramPath(sf->GetFullPath().c_str(),
dir, file);
2005-03-22 18:29:34 +03:00
fileRef->AddAttribute("name", this->CreateString(file.c_str()));
2005-02-18 21:32:51 +03:00
fileRef->AddAttribute("path", this->CreateString(path.c_str()));
2005-01-28 00:11:44 +03:00
fileRef->AddAttribute("refType", this->CreateString("4"));
2005-02-18 21:32:51 +03:00
if(path.size() > 1 && path[0] == '.' && path[1] == '.')
{
fileRef->AddAttribute("sourceTree", this->CreateString("<group>"));
}
else
{
fileRef->AddAttribute("sourceTree", this->CreateString("<absolute>"));
}
2005-01-28 00:11:44 +03:00
return buildFile;
}
2005-02-18 21:32:51 +03:00
//----------------------------------------------------------------------------
bool cmGlobalXCodeGenerator::SpecialTargetEmitted(std::string const& tname)
{
if(tname == "ALL_BUILD" || tname == "XCODE_DEPEND_HELPER" ||
2005-02-28 23:07:13 +03:00
tname == "install" || tname == "RUN_TESTS" )
2005-02-18 21:32:51 +03:00
{
if(m_TargetDoneSet.find(tname) != m_TargetDoneSet.end())
{
return true;
}
m_TargetDoneSet.insert(tname);
return false;
}
return false;
}
2005-02-25 01:46:49 +03:00
void cmGlobalXCodeGenerator::SetCurrentLocalGenerator(cmLocalGenerator* gen)
{
m_CurrentLocalGenerator = gen;
m_CurrentMakefile = gen->GetMakefile();
std::string outdir =
cmSystemTools::CollapseFullPath(m_CurrentMakefile->
GetCurrentOutputDirectory());
2005-02-25 01:46:49 +03:00
cmSystemTools::SplitPath(outdir.c_str(), m_CurrentOutputDirectoryComponents);
}
2005-01-25 01:35:54 +03:00
//----------------------------------------------------------------------------
2005-02-04 01:42:55 +03:00
void
cmGlobalXCodeGenerator::CreateXCodeTargets(cmLocalGenerator* gen,
std::vector<cmXCodeObject*>&
2005-02-09 01:12:38 +03:00
targets)
2005-01-28 00:11:44 +03:00
{
2005-02-25 01:46:49 +03:00
this->SetCurrentLocalGenerator(gen);
2005-01-28 00:11:44 +03:00
cmTargets &tgts = gen->GetMakefile()->GetTargets();
for(cmTargets::iterator l = tgts.begin(); l != tgts.end(); l++)
{
2005-02-04 01:42:55 +03:00
cmTarget& cmtarget = l->second;
2005-02-18 21:32:51 +03:00
// make sure ALL_BUILD, INSTALL, etc are only done once
if(this->SpecialTargetEmitted(l->first.c_str()))
{
2005-02-18 21:32:51 +03:00
continue;
}
2005-02-04 01:42:55 +03:00
if(cmtarget.GetType() == cmTarget::UTILITY ||
cmtarget.GetType() == cmTarget::INSTALL_FILES ||
cmtarget.GetType() == cmTarget::INSTALL_PROGRAMS)
{
2005-02-15 00:46:32 +03:00
if(cmtarget.GetType() == cmTarget::UTILITY)
{
targets.push_back(this->CreateUtilityTarget(cmtarget));
}
2005-02-04 01:42:55 +03:00
continue;
}
2005-01-28 00:11:44 +03:00
// create source build phase
cmXCodeObject* sourceBuildPhase =
this->CreateObject(cmXCodeObject::PBXSourcesBuildPhase);
sourceBuildPhase->AddAttribute("buildActionMask",
this->CreateString("2147483647"));
2005-01-28 00:11:44 +03:00
cmXCodeObject* buildFiles = this->CreateObject(cmXCodeObject::OBJECT_LIST);
sourceBuildPhase->AddAttribute("files", buildFiles);
sourceBuildPhase->AddAttribute("runOnlyForDeploymentPostprocessing",
this->CreateString("0"));
2005-01-28 00:11:44 +03:00
std::vector<cmSourceFile*> &classes = l->second.GetSourceFiles();
// add all the sources
2005-02-18 21:32:51 +03:00
std::vector<cmXCodeObject*> externalObjFiles;
std::vector<cmXCodeObject*> headerFiles;
2005-01-28 00:11:44 +03:00
for(std::vector<cmSourceFile*>::iterator i = classes.begin();
i != classes.end(); ++i)
{
2005-02-18 21:32:51 +03:00
cmXCodeObject* xsf = this->CreateXCodeSourceFile(gen, *i);
cmXCodeObject* fr = xsf->GetObject("fileRef");
cmXCodeObject* filetype =
fr->GetObject()->GetObject("lastKnownFileType");
if(strcmp(filetype->GetString(), "\"compiled.mach-o.objfile\"") == 0)
{
externalObjFiles.push_back(xsf);
}
else if((*i)->GetPropertyAsBool("HEADER_FILE_ONLY"))
{
headerFiles.push_back(xsf);
}
2005-02-18 21:32:51 +03:00
else
{
buildFiles->AddObject(xsf);
}
2005-01-28 00:11:44 +03:00
}
// create header build phase
cmXCodeObject* headerBuildPhase =
this->CreateObject(cmXCodeObject::PBXHeadersBuildPhase);
headerBuildPhase->AddAttribute("buildActionMask",
this->CreateString("2147483647"));
2005-01-28 00:11:44 +03:00
buildFiles = this->CreateObject(cmXCodeObject::OBJECT_LIST);
for(std::vector<cmXCodeObject*>::iterator i = headerFiles.begin();
i != headerFiles.end(); ++i)
{
buildFiles->AddObject(*i);
}
2005-01-28 00:11:44 +03:00
headerBuildPhase->AddAttribute("files", buildFiles);
headerBuildPhase->AddAttribute("runOnlyForDeploymentPostprocessing",
this->CreateString("0"));
2005-01-28 00:11:44 +03:00
// create framework build phase
cmXCodeObject* frameworkBuildPhase =
this->CreateObject(cmXCodeObject::PBXFrameworksBuildPhase);
frameworkBuildPhase->AddAttribute("buildActionMask",
this->CreateString("2147483647"));
2005-01-28 00:11:44 +03:00
buildFiles = this->CreateObject(cmXCodeObject::OBJECT_LIST);
frameworkBuildPhase->AddAttribute("files", buildFiles);
2005-02-18 21:32:51 +03:00
for(std::vector<cmXCodeObject*>::iterator i = externalObjFiles.begin();
i != externalObjFiles.end(); ++i)
{
buildFiles->AddObject(*i);
}
frameworkBuildPhase->AddAttribute("runOnlyForDeploymentPostprocessing",
this->CreateString("0"));
2005-02-04 01:42:55 +03:00
cmXCodeObject* buildPhases =
this->CreateObject(cmXCodeObject::OBJECT_LIST);
this->CreateCustomCommands(buildPhases, sourceBuildPhase,
headerBuildPhase, frameworkBuildPhase,
cmtarget);
targets.push_back(this->CreateXCodeTarget(l->second, buildPhases));
}
}
2005-02-28 23:07:13 +03:00
//----------------------------------------------------------------------------
cmXCodeObject*
cmGlobalXCodeGenerator::CreateBuildPhase(const char* name,
const char* name2,
cmTarget& cmtarget,
const std::vector<cmCustomCommand>&
commands)
{
if(commands.size() == 0 && strcmp(name, "CMake ReRun") != 0)
{
return 0;
}
cmXCodeObject* buildPhase =
this->CreateObject(cmXCodeObject::PBXShellScriptBuildPhase);
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"));
this->AddCommandsToBuildPhase(buildPhase, cmtarget, commands,
name2);
return buildPhase;
}
2005-02-18 21:32:51 +03:00
//----------------------------------------------------------------------------
void cmGlobalXCodeGenerator::CreateCustomCommands(cmXCodeObject* buildPhases,
cmXCodeObject*
sourceBuildPhase,
cmXCodeObject*
headerBuildPhase,
cmXCodeObject*
frameworkBuildPhase,
cmTarget& cmtarget)
{
std::vector<cmCustomCommand> const & prebuild
= cmtarget.GetPreBuildCommands();
std::vector<cmCustomCommand> const & prelink
= cmtarget.GetPreLinkCommands();
std::vector<cmCustomCommand> const & postbuild
= cmtarget.GetPostBuildCommands();
cmtarget.TraceVSDependencies(cmtarget.GetName(), m_CurrentMakefile);
std::vector<cmSourceFile*> &classes = cmtarget.GetSourceFiles();
// add all the sources
std::vector<cmCustomCommand> commands;
for(std::vector<cmSourceFile*>::iterator i = classes.begin();
i != classes.end(); ++i)
{
if((*i)->GetCustomCommand())
{
commands.push_back(*(*i)->GetCustomCommand());
}
}
2005-02-28 23:07:13 +03:00
std::vector<cmCustomCommand> reruncom;
cmXCodeObject* cmakeReRunPhase = this->CreateBuildPhase("CMake ReRun",
"cmakeReRunPhase",
cmtarget, reruncom);
buildPhases->AddObject(cmakeReRunPhase);
// create prebuild phase
2005-02-28 23:07:13 +03:00
cmXCodeObject* cmakeRulesBuildPhase =
this->CreateBuildPhase("CMake Rules",
"cmakeRulesBuildPhase",
cmtarget, commands);
// create prebuild phase
2005-02-28 23:07:13 +03:00
cmXCodeObject* preBuildPhase = this->CreateBuildPhase("CMake PreBuild Rules",
"preBuildCommands",
cmtarget, prebuild);
// create prebuild phase
2005-02-28 23:07:13 +03:00
cmXCodeObject* preLinkPhase = this->CreateBuildPhase("CMake PreLink Rules",
"preLinkCommands",
cmtarget, prelink);
// create prebuild phase
2005-02-28 23:07:13 +03:00
cmXCodeObject* postBuildPhase =
this->CreateBuildPhase("CMake PostBuild Rules",
"postBuildPhase",
cmtarget, postbuild);
// the order here is the order they will be built in
if(preBuildPhase)
{
buildPhases->AddObject(preBuildPhase);
}
if(cmakeRulesBuildPhase)
{
buildPhases->AddObject(cmakeRulesBuildPhase);
}
if(sourceBuildPhase)
{
2005-01-28 00:11:44 +03:00
buildPhases->AddObject(sourceBuildPhase);
}
if(headerBuildPhase)
{
2005-01-28 00:11:44 +03:00
buildPhases->AddObject(headerBuildPhase);
}
if(preLinkPhase)
{
buildPhases->AddObject(preLinkPhase);
}
if(frameworkBuildPhase)
{
2005-01-28 00:11:44 +03:00
buildPhases->AddObject(frameworkBuildPhase);
}
if(postBuildPhase)
{
buildPhases->AddObject(postBuildPhase);
}
}
2005-09-03 00:29:32 +04:00
//----------------------------------------------------------------------------
std::string cmGlobalXCodeGenerator::ExtractFlag(const char* flag,
std::string& flags)
{
std::string retFlag;
std::string::size_type pos = flags.find(flag);
if(pos != flags.npos)
{
retFlag = flag;
// remove the flag
flags[pos]=' ';
flags[pos+1]=' ';
char pos2 = flags[pos+2];
// if the pos after the option
if(pos2 != ' ' && pos2 != 0 )
{
retFlag += pos2;
// remove the next part of the flag
flags[pos+2] = ' ';
}
}
return retFlag;
}
2005-02-18 21:32:51 +03:00
//----------------------------------------------------------------------------
void
cmGlobalXCodeGenerator::AddCommandsToBuildPhase(cmXCodeObject* buildphase,
cmTarget& target,
std::vector<cmCustomCommand>
const & commands,
const char* name)
{
2005-02-28 23:07:13 +03:00
if(strcmp(name, "cmakeReRunPhase") == 0)
{
std::string cdir = m_CurrentMakefile->GetHomeOutputDirectory();
cdir = this->ConvertToRelativeForMake(cdir.c_str());
std::string makecmd = "make -C ";
2005-02-28 23:30:40 +03:00
makecmd += cdir;
2005-02-28 23:07:13 +03:00
makecmd += " -f ";
makecmd +=
this->ConvertToRelativeForMake(m_CurrentReRunCMakeMakefile.c_str());
cmSystemTools::ReplaceString(makecmd, "\\ ", "\\\\ ");
buildphase->AddAttribute("shellScript",
this->CreateString(makecmd.c_str()));
return;
}
2005-02-18 22:32:55 +03:00
std::string dir = m_CurrentMakefile->GetCurrentOutputDirectory();
dir += "/CMakeScripts";
cmSystemTools::MakeDirectory(dir.c_str());
std::string makefile = dir;
makefile += "/";
makefile += target.GetName();
makefile += "_";
makefile += name;
makefile += ".make";
cmGeneratedFileStream makefileStream(makefile.c_str());
if(!makefileStream)
{
return;
}
makefileStream << "# Generated by CMake, DO NOT EDIT\n";
makefileStream << "# Custom rules for " << target.GetName() << "\n";
// have all depend on all outputs
makefileStream << "all: ";
std::map<const cmCustomCommand*, cmStdString> tname;
int count = 0;
for(std::vector<cmCustomCommand>::const_iterator i = commands.begin();
i != commands.end(); ++i)
{
cmCustomCommand const& cc = *i;
if(!cc.GetCommandLines().empty())
{
if(cc.GetOutput()[0])
{
2005-02-18 21:32:51 +03:00
makefileStream << "\\\n\t" << this->
2005-02-25 01:46:49 +03:00
ConvertToRelativeForMake(cc.GetOutput());
}
else
{
char c = '1' + count++;
tname[&cc] = std::string(target.GetName()) + c;
makefileStream << "\\\n\t" << tname[&cc];
}
}
}
makefileStream << "\n\n";
for(std::vector<cmCustomCommand>::const_iterator i = commands.begin();
i != commands.end(); ++i)
{
cmCustomCommand const& cc = *i;
if(!cc.GetCommandLines().empty())
{
makefileStream << "\n#" << "Custom command rule: " <<
cc.GetComment() << "\n";
if(cc.GetOutput()[0])
{
2005-02-18 21:32:51 +03:00
makefileStream << this
2005-02-25 01:46:49 +03:00
->ConvertToRelativeForMake(cc.GetOutput()) << ": ";
}
else
{
makefileStream << tname[&cc] << ": ";
}
for(std::vector<std::string>::const_iterator d = cc.GetDepends().begin();
d != cc.GetDepends().end(); ++d)
{
if(!this->FindTarget(m_CurrentProject.c_str(),
d->c_str()))
{
// if the depend is not a target but
// is a full path then use it, if not then
// just skip it
if(cmSystemTools::FileIsFullPath(d->c_str()))
{
makefileStream << "\\\n" << this
->ConvertToRelativeForMake(d->c_str());
}
}
else
{
// if the depend is a target then make
// the target with the source that is a custom command
// depend on the that target via a AddUtility call
target.AddUtility(d->c_str());
}
}
makefileStream << "\n";
// Add each command line to the set of commands.
for(cmCustomCommandLines::const_iterator cl =
cc.GetCommandLines().begin();
cl != cc.GetCommandLines().end(); ++cl)
{
// Build the command line in a single string.
const cmCustomCommandLine& commandLine = *cl;
std::string cmd = commandLine[0];
cmSystemTools::ReplaceString(cmd, "/./", "/");
2005-02-25 01:46:49 +03:00
cmd = this->ConvertToRelativeForMake(cmd.c_str());
for(unsigned int j=1; j < commandLine.size(); ++j)
{
cmd += " ";
cmd += cmSystemTools::EscapeSpaces(commandLine[j].c_str());
}
makefileStream << "\t" << cmd.c_str() << "\n";
}
}
2005-01-28 00:11:44 +03:00
}
2005-02-18 22:32:55 +03:00
std::string cdir = m_CurrentMakefile->GetCurrentOutputDirectory();
2005-02-25 01:46:49 +03:00
cdir = this->ConvertToRelativeForXCode(cdir.c_str());
std::string makecmd = "make -C ";
2005-02-18 22:32:55 +03:00
makecmd += cdir;
makecmd += " -f ";
2005-02-25 01:46:49 +03:00
makecmd += this->ConvertToRelativeForMake(makefile.c_str());
2005-02-18 23:45:19 +03:00
cmSystemTools::ReplaceString(makecmd, "\\ ", "\\\\ ");
buildphase->AddAttribute("shellScript", this->CreateString(makecmd.c_str()));
}
2005-02-01 21:07:42 +03:00
2005-01-28 00:11:44 +03:00
2005-02-18 21:32:51 +03:00
//----------------------------------------------------------------------------
2005-02-03 01:16:07 +03:00
void cmGlobalXCodeGenerator::CreateBuildSettings(cmTarget& target,
cmXCodeObject* buildSettings,
std::string& fileType,
std::string& productType,
2005-09-03 00:29:32 +04:00
std::string& productName,
const char* buildtype)
2005-02-01 21:07:42 +03:00
{
2005-02-15 00:46:32 +03:00
this->ConfigureOutputPaths();
2005-02-03 01:16:07 +03:00
std::string flags;
std::string defFlags;
2005-02-03 01:16:07 +03:00
bool shared = ((target.GetType() == cmTarget::SHARED_LIBRARY) ||
(target.GetType() == cmTarget::MODULE_LIBRARY));
2005-02-11 22:25:05 +03:00
if(shared)
{
defFlags += "-D";
2005-02-11 22:25:05 +03:00
if(const char* custom_export_name = target.GetProperty("DEFINE_SYMBOL"))
{
defFlags += custom_export_name;
2005-02-11 22:25:05 +03:00
}
else
{
std::string in = target.GetName();
in += "_EXPORTS";
defFlags += cmSystemTools::MakeCindentifier(in.c_str());
2005-02-11 22:25:05 +03:00
}
}
2005-02-03 01:16:07 +03:00
const char* lang = target.GetLinkerLanguage(this);
std::string cflags;
2005-02-03 01:16:07 +03:00
if(lang)
{
2005-09-03 00:29:32 +04:00
if(buildtype)
{
m_CurrentMakefile->AddDefinition("CMAKE_BUILD_TYPE", buildtype);
}
// for c++ projects get the c flags as well
if(strcmp(lang, "CXX") == 0)
{
m_CurrentLocalGenerator->AddLanguageFlags(cflags, "C");
m_CurrentLocalGenerator->AddSharedFlags(cflags, lang, shared);
}
2005-02-03 01:16:07 +03:00
// Add language-specific flags.
m_CurrentLocalGenerator->AddLanguageFlags(flags, lang);
// Add shared-library flags if needed.
m_CurrentLocalGenerator->AddSharedFlags(flags, lang, shared);
2005-09-03 00:29:32 +04:00
m_CurrentMakefile->AddDefinition("CMAKE_BUILD_TYPE", "");
2005-02-03 01:16:07 +03:00
}
2005-02-11 22:25:05 +03:00
2005-02-15 00:46:32 +03:00
// Add define flags
m_CurrentLocalGenerator->AppendFlags(defFlags,
2005-02-03 01:16:07 +03:00
m_CurrentMakefile->GetDefineFlags());
cmSystemTools::ReplaceString(defFlags, "\"", "\\\"");
2005-02-03 01:16:07 +03:00
cmSystemTools::ReplaceString(flags, "\"", "\\\"");
cmSystemTools::ReplaceString(cflags, "\"", "\\\"");
if(m_XcodeVersion == 21)
{
defFlags += " -DCMAKE_INTDIR=\\\\\\\"$(CONFIGURATION)\\\\\\\" ";
}
2005-02-03 01:16:07 +03:00
productName = target.GetName();
2005-02-15 00:46:32 +03:00
2005-02-03 01:16:07 +03:00
switch(target.GetType())
{
case cmTarget::STATIC_LIBRARY:
2005-02-05 01:58:58 +03:00
{
2005-02-15 00:46:32 +03:00
if(m_LibraryOutputPath.size())
{
buildSettings->AddAttribute("SYMROOT",
this->CreateString
(m_LibraryOutputPath.c_str()));
}
2005-02-03 01:16:07 +03:00
productName += ".a";
2005-02-05 01:58:58 +03:00
std::string t = "lib";
t += productName;
2005-02-15 00:46:32 +03:00
productName = t;
2005-02-03 01:16:07 +03:00
productType = "com.apple.product-type.library.static";
2005-02-05 01:58:58 +03:00
fileType = "archive.ar";
2005-02-03 01:16:07 +03:00
buildSettings->AddAttribute("LIBRARY_STYLE",
this->CreateString("STATIC"));
break;
2005-02-05 01:58:58 +03:00
}
2005-02-03 01:16:07 +03:00
case cmTarget::MODULE_LIBRARY:
2005-02-15 00:46:32 +03:00
{
if(m_LibraryOutputPath.size())
{
buildSettings->AddAttribute("SYMROOT",
this->CreateString
(m_LibraryOutputPath.c_str()));
}
2005-02-17 00:35:32 +03:00
buildSettings->AddAttribute("EXECUTABLE_PREFIX",
this->CreateString("lib"));
buildSettings->AddAttribute("EXECUTABLE_EXTENSION",
this->CreateString("so"));
2005-02-03 01:16:07 +03:00
buildSettings->AddAttribute("LIBRARY_STYLE",
2005-02-17 00:35:32 +03:00
this->CreateString("BUNDLE"));
2005-02-03 01:16:07 +03:00
productName += ".so";
2005-02-15 00:46:32 +03:00
std::string t = "lib";
t += productName;
productName = t;
2005-02-03 01:16:07 +03:00
buildSettings->AddAttribute("OTHER_LDFLAGS",
this->CreateString("-bundle"));
productType = "com.apple.product-type.library.dynamic";
fileType = "compiled.mach-o.dylib";
break;
2005-02-15 00:46:32 +03:00
}
2005-02-03 01:16:07 +03:00
case cmTarget::SHARED_LIBRARY:
2005-02-15 00:46:32 +03:00
{
if(m_LibraryOutputPath.size())
{
buildSettings->AddAttribute("SYMROOT",
this->CreateString
(m_LibraryOutputPath.c_str()));
}
2005-02-03 01:16:07 +03:00
buildSettings->AddAttribute("LIBRARY_STYLE",
this->CreateString("DYNAMIC"));
productName += ".dylib";
2005-02-15 00:46:32 +03:00
std::string t = "lib";
t += productName;
productName = t;
2005-02-03 01:16:07 +03:00
buildSettings->AddAttribute("DYLIB_COMPATIBILITY_VERSION",
this->CreateString("1"));
buildSettings->AddAttribute("DYLIB_CURRENT_VERSION",
this->CreateString("1"));
buildSettings->AddAttribute("OTHER_LDFLAGS",
this->CreateString("-dynamiclib"));
productType = "com.apple.product-type.library.dynamic";
fileType = "compiled.mach-o.dylib";
break;
2005-02-15 00:46:32 +03:00
}
2005-02-04 01:42:55 +03:00
case cmTarget::EXECUTABLE:
2005-07-14 00:23:32 +04:00
{
2005-08-20 01:17:13 +04:00
const char* outname = target.GetProperty("OUTPUT_NAME");
std::string name;
if(outname)
{
productName = outname;
name = outname;
}
else
{
name = target.GetName();
}
2005-07-14 00:23:32 +04:00
std::string symRoot;
2005-02-15 00:46:32 +03:00
if(m_ExecutableOutputPath.size())
2005-07-14 00:23:32 +04:00
{
std::string path = m_ExecutableOutputPath;
if(target.GetPropertyAsBool("MACOSX_BUNDLE"))
{
2005-08-20 01:17:13 +04:00
path += name;
2005-07-14 00:23:32 +04:00
path += ".app/Contents/MacOS/";
}
symRoot = path;
}
fileType = "compiled.mach-o.executable";
if(target.GetPropertyAsBool("MACOSX_BUNDLE"))
{
if(symRoot.size() == 0)
2005-08-20 01:17:13 +04:00
{
symRoot = name;
2005-07-14 00:23:32 +04:00
symRoot += ".app/Contents/MacOS/";
}
productType = "com.apple.product-type.tool";
}
else
{
productType = "com.apple.product-type.tool";
}
if(symRoot.size())
2005-02-15 00:46:32 +03:00
{
buildSettings->AddAttribute("SYMROOT",
this->CreateString
2005-07-14 00:23:32 +04:00
(symRoot.c_str()));
2005-02-15 00:46:32 +03:00
}
2005-07-14 00:23:32 +04:00
}
2005-02-03 01:16:07 +03:00
break;
case cmTarget::UTILITY:
2005-02-04 01:42:55 +03:00
2005-02-03 01:16:07 +03:00
break;
case cmTarget::INSTALL_FILES:
break;
case cmTarget::INSTALL_PROGRAMS:
break;
}
2005-02-15 00:46:32 +03:00
std::string dirs;
std::vector<std::string>& includes =
m_CurrentMakefile->GetIncludeDirectories();
std::vector<std::string>::iterator i = includes.begin();
for(;i != includes.end(); ++i)
{
std::string incpath =
2005-02-24 23:34:14 +03:00
this->XCodeEscapePath(i->c_str());
2005-02-15 00:46:32 +03:00
dirs += incpath + " ";
}
if(dirs.size())
{
buildSettings->AddAttribute("HEADER_SEARCH_PATHS",
this->CreateString(dirs.c_str()));
}
2005-09-03 00:29:32 +04:00
std::string oflagc = this->ExtractFlag("-O", cflags);
char optLevel[2];
optLevel[0] = '0';
optLevel[1] = 0;
if(oflagc.size() == 3)
{
optLevel[0] = oflagc[2];
}
if(oflagc.size() == 2)
{
optLevel[0] = '1';
}
std::string oflag = this->ExtractFlag("-O", flags);
if(oflag.size() == 3)
{
optLevel[0] = oflag[2];
}
if(oflag.size() == 2)
{
optLevel[0] = '1';
}
std::string gflagc = this->ExtractFlag("-g", cflags);
std::string gflag = this->ExtractFlag("-g", flags);
const char* debugStr = "YES";
if(gflagc.size() ==0 && gflag.size() == 0)
{
debugStr = "NO";
}
buildSettings->AddAttribute("GCC_GENERATE_DEBUGGING_SYMBOLS",
this->CreateString(debugStr));
2005-02-05 01:58:58 +03:00
buildSettings->AddAttribute("GCC_OPTIMIZATION_LEVEL",
2005-09-03 00:29:32 +04:00
this->CreateString(optLevel));
2005-02-01 21:07:42 +03:00
buildSettings->AddAttribute("INSTALL_PATH",
2005-02-17 00:35:32 +03:00
this->CreateString(""));
2005-02-01 21:07:42 +03:00
buildSettings->AddAttribute("OPTIMIZATION_CFLAGS",
2005-09-03 00:29:32 +04:00
this->CreateString(oflagc.c_str()));
if(lang && strcmp(lang, "CXX") == 0)
{
flags += " ";
flags += defFlags;
buildSettings->AddAttribute("OTHER_CPLUSPLUSFLAGS",
this->CreateString(flags.c_str()));
cflags += " ";
cflags += defFlags;
buildSettings->AddAttribute("OTHER_CFLAGS",
this->CreateString(cflags.c_str()));
}
else
{
flags += " ";
flags += defFlags;
buildSettings->AddAttribute("OTHER_CFLAGS",
this->CreateString(flags.c_str()));
}
2005-02-01 21:07:42 +03:00
buildSettings->AddAttribute("OTHER_LDFLAGS",
this->CreateString(""));
buildSettings->AddAttribute("OTHER_REZFLAGS",
this->CreateString(""));
buildSettings->AddAttribute("SECTORDER_FLAGS",
this->CreateString(""));
buildSettings->AddAttribute("USE_HEADERMAP",
this->CreateString("NO"));
2005-02-03 01:16:07 +03:00
buildSettings->AddAttribute("WARNING_CFLAGS",
this->CreateString(
"-Wmost -Wno-four-char-constants"
" -Wno-unknown-pragmas"));
2005-02-17 00:35:32 +03:00
std::string pname;
if(target.GetType() == cmTarget::SHARED_LIBRARY)
{
pname = "lib";
}
pname += target.GetName();
2005-08-20 01:17:13 +04:00
if(target.GetType() == cmTarget::EXECUTABLE
&& target.GetProperty("OUTPUT_NAME") )
{
pname = target.GetProperty("OUTPUT_NAME");
}
2005-02-03 01:16:07 +03:00
buildSettings->AddAttribute("PRODUCT_NAME",
2005-02-17 00:35:32 +03:00
this->CreateString(pname.c_str()));
2005-02-01 21:07:42 +03:00
}
2005-02-18 21:32:51 +03:00
//----------------------------------------------------------------------------
2005-02-04 01:42:55 +03:00
cmXCodeObject*
cmGlobalXCodeGenerator::CreateUtilityTarget(cmTarget& cmtarget)
{
cmXCodeObject* shellBuildPhase =
this->CreateObject(cmXCodeObject::PBXShellScriptBuildPhase);
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"));
shellBuildPhase->AddAttribute("shellPath",
this->CreateString("/bin/sh"));
shellBuildPhase->AddAttribute("shellScript",
this->CreateString(
"# shell script goes here\nexit 0"));
cmXCodeObject* target =
this->CreateObject(cmXCodeObject::PBXAggregateTarget);
cmXCodeObject* buildPhases =
this->CreateObject(cmXCodeObject::OBJECT_LIST);
this->CreateCustomCommands(buildPhases, 0, 0, 0, cmtarget);
2005-02-04 01:42:55 +03:00
target->AddAttribute("buildPhases", buildPhases);
cmXCodeObject* buildSettings =
this->CreateObject(cmXCodeObject::ATTRIBUTE_GROUP);
std::string fileTypeString;
std::string productTypeString;
std::string productName;
this->CreateBuildSettings(cmtarget,
buildSettings, fileTypeString,
2005-09-03 00:29:32 +04:00
productTypeString, productName, 0);
if(m_XcodeVersion > 20)
{
this->AddConfigurations(target, cmtarget);
}
2005-02-04 01:42:55 +03:00
target->AddAttribute("buildSettings", buildSettings);
cmXCodeObject* dependencies = this->CreateObject(cmXCodeObject::OBJECT_LIST);
target->AddAttribute("dependencies", dependencies);
2005-08-20 01:17:13 +04:00
target->AddAttribute("name", this->CreateString(productName.c_str()));
target->AddAttribute("productName",this->CreateString(productName.c_str()));
2005-02-04 01:42:55 +03:00
target->SetcmTarget(&cmtarget);
return target;
}
2005-09-03 00:29:32 +04:00
//----------------------------------------------------------------------------
void cmGlobalXCodeGenerator::AddConfigurations(cmXCodeObject* target,
cmTarget& cmtarget)
{
std::string configTypes = m_CurrentMakefile->GetRequiredDefinition("CMAKE_CONFIGURATION_TYPES");
std::vector<std::string> configVectorIn;
std::vector<std::string> configVector;
configVectorIn.push_back(configTypes);
cmSystemTools::ExpandList(configVectorIn, configVector);
configVector.push_back("Default");
cmXCodeObject* configlist = this->CreateObject(cmXCodeObject::XCConfigurationList);
cmXCodeObject* buildConfigurations =
this->CreateObject(cmXCodeObject::OBJECT_LIST);
configlist->AddAttribute("buildConfigurations", buildConfigurations);
target->AddAttribute("buildConfigurationList",
this->CreateObjectReference(configlist));
for(unsigned int i = 0; i < configVector.size(); ++i)
{
cmXCodeObject* config = this->CreateObject(cmXCodeObject::XCBuildConfiguration);
buildConfigurations->AddObject(config);
cmXCodeObject* buildSettings =
this->CreateObject(cmXCodeObject::ATTRIBUTE_GROUP);
std::string fileTypeString;
std::string productTypeString;
std::string productName;
std::string buildtype = cmSystemTools::UpperCase(configVector[i]);
this->CreateBuildSettings(cmtarget,
buildSettings, fileTypeString,
productTypeString, productName, buildtype.c_str());
config->AddAttribute("name", this->CreateString(configVector[i].c_str()));
config->AddAttribute("buildSettings", buildSettings);
}
}
2005-02-18 21:32:51 +03:00
//----------------------------------------------------------------------------
2005-02-03 01:16:07 +03:00
cmXCodeObject*
cmGlobalXCodeGenerator::CreateXCodeTarget(cmTarget& cmtarget,
cmXCodeObject* buildPhases)
2005-02-01 21:07:42 +03:00
{
2005-02-04 01:42:55 +03:00
cmXCodeObject* target =
this->CreateObject(cmXCodeObject::PBXNativeTarget);
2005-02-01 21:07:42 +03:00
target->AddAttribute("buildPhases", buildPhases);
cmXCodeObject* buildRules = this->CreateObject(cmXCodeObject::OBJECT_LIST);
target->AddAttribute("buildRules", buildRules);
cmXCodeObject* buildSettings =
this->CreateObject(cmXCodeObject::ATTRIBUTE_GROUP);
2005-02-03 01:16:07 +03:00
std::string fileTypeString;
std::string productTypeString;
std::string productName;
2005-09-03 00:29:32 +04:00
if(m_XcodeVersion > 20)
{
this->AddConfigurations(target, cmtarget);
}
2005-02-03 01:16:07 +03:00
this->CreateBuildSettings(cmtarget,
buildSettings, fileTypeString,
2005-09-03 00:29:32 +04:00
productTypeString, productName, 0);
2005-02-01 21:07:42 +03:00
target->AddAttribute("buildSettings", buildSettings);
cmXCodeObject* dependencies = this->CreateObject(cmXCodeObject::OBJECT_LIST);
target->AddAttribute("dependencies", dependencies);
2005-08-20 01:17:13 +04:00
target->AddAttribute("name", this->CreateString(productName.c_str()));
target->AddAttribute("productName",this->CreateString(productName.c_str()));
2005-02-08 01:36:34 +03:00
2005-02-01 21:07:42 +03:00
cmXCodeObject* fileRef = this->CreateObject(cmXCodeObject::PBXFileReference);
fileRef->AddAttribute("explicitFileType",
2005-02-03 01:16:07 +03:00
this->CreateString(fileTypeString.c_str()));
fileRef->AddAttribute("path", this->CreateString(productName.c_str()));
2005-02-15 00:46:32 +03:00
fileRef->AddAttribute("refType", this->CreateString("0"));
2005-02-08 01:36:34 +03:00
fileRef->AddAttribute("sourceTree",
this->CreateString("BUILT_PRODUCTS_DIR"));
target->AddAttribute("productReference",
this->CreateObjectReference(fileRef));
2005-02-01 21:07:42 +03:00
target->AddAttribute("productType",
2005-02-03 01:16:07 +03:00
this->CreateString(productTypeString.c_str()));
2005-02-04 01:42:55 +03:00
target->SetcmTarget(&cmtarget);
2005-02-01 21:07:42 +03:00
return target;
}
2005-02-18 21:32:51 +03:00
//----------------------------------------------------------------------------
2005-02-04 01:42:55 +03:00
cmXCodeObject* cmGlobalXCodeGenerator::FindXCodeTarget(cmTarget* t)
{
if(!t)
{
return 0;
}
for(std::vector<cmXCodeObject*>::iterator i = m_XCodeObjects.begin();
i != m_XCodeObjects.end(); ++i)
{
cmXCodeObject* o = *i;
if(o->GetcmTarget() == t)
{
return o;
}
}
return 0;
}
2005-02-18 21:32:51 +03:00
//----------------------------------------------------------------------------
2005-02-04 01:42:55 +03:00
void cmGlobalXCodeGenerator::AddDependTarget(cmXCodeObject* target,
cmXCodeObject* dependTarget)
{
// make sure a target does not depend on itself
if(target == dependTarget)
{
return;
}
// now avoid circular references if dependTarget already
// depends on target then skip it. Circular references crashes
// xcode
cmXCodeObject* dependTargetDepends = dependTarget->GetObject("dependencies");
if(dependTargetDepends)
{
if(dependTargetDepends->HasObject(target->GetPBXTargetDependency()))
{
return;
}
}
2005-02-05 01:58:58 +03:00
cmXCodeObject* targetdep = dependTarget->GetPBXTargetDependency();
if(!targetdep)
{
cmXCodeObject* container =
this->CreateObject(cmXCodeObject::PBXContainerItemProxy);
container->AddAttribute("containerPortal",
this->CreateObjectReference(m_RootObject));
container->AddAttribute("proxyType", this->CreateString("1"));
container->AddAttribute("remoteGlobalIDString",
this->CreateObjectReference(dependTarget));
container->AddAttribute("remoteInfo",
this->CreateString(
dependTarget->GetcmTarget()->GetName()));
targetdep =
this->CreateObject(cmXCodeObject::PBXTargetDependency);
targetdep->AddAttribute("target",
this->CreateObjectReference(dependTarget));
targetdep->AddAttribute("targetProxy",
this->CreateObjectReference(container));
dependTarget->SetPBXTargetDependency(targetdep);
}
2005-02-04 01:42:55 +03:00
cmXCodeObject* depends = target->GetObject("dependencies");
if(!depends)
{
cmSystemTools::
Error("target does not have dependencies attribute error..");
2005-02-04 01:42:55 +03:00
}
else
{
depends->AddUniqueObject(targetdep);
2005-02-04 01:42:55 +03:00
}
}
2005-09-03 00:29:32 +04:00
//----------------------------------------------------------------------------
void cmGlobalXCodeGenerator::AppendBuildSettingAttribute(cmXCodeObject* target,
const char* attribute,
const char* value)
{
cmXCodeObject* configurationList = target->GetObject("buildConfigurationList")->GetObject();
cmXCodeObject* buildConfigs = configurationList->GetObject("buildConfigurations");
std::vector<cmXCodeObject*> list = buildConfigs->GetObjectList();
// each configuration and the target itself has a buildSettings in it
list.push_back(target);
for(std::vector<cmXCodeObject*>::iterator i = list.begin(); i != list.end(); ++i)
{
cmXCodeObject* settings = (*i)->GetObject("buildSettings");
if(settings)
{
cmXCodeObject* attr = settings->GetObject(attribute);
if(!attr)
{
settings->AddAttribute(attribute, this->CreateString(value));
}
else
{
std::string oldValue = attr->GetString();
cmSystemTools::ReplaceString(oldValue, "\"", "");
oldValue += " ";
oldValue += value;
attr->SetString(oldValue.c_str());
}
}
}
}
2005-02-18 21:32:51 +03:00
//----------------------------------------------------------------------------
2005-02-11 22:25:05 +03:00
void cmGlobalXCodeGenerator::AddLinkLibrary(cmXCodeObject* target,
const char* library,
cmTarget* dtarget)
2005-02-04 01:42:55 +03:00
{
if(dtarget)
2005-02-09 01:12:38 +03:00
{
target->AddDependLibrary(this->GetTargetFullPath(dtarget).c_str());
2005-02-09 01:12:38 +03:00
}
// if the library is not a full path then add it with a -l flag
// to the settings of the target
2005-07-14 00:23:32 +04:00
cmsys::RegularExpression reg("^([ \t]*\\-[lLWRB])|([ \t]*\\-framework)|(\\${)|([ \t]*\\-pthread)|([ \t]*`)");
// if the library is not already in the form required by the compiler
// add a -l infront of the name
2005-09-03 00:29:32 +04:00
std::string link;
if(!reg.find(library))
{
link += "-l";
}
link += library;
2005-09-03 00:29:32 +04:00
this->AppendBuildSettingAttribute(target, "OTHER_LDFLAGS", link.c_str());
2005-02-04 01:42:55 +03:00
}
2005-02-18 21:32:51 +03:00
//----------------------------------------------------------------------------
std::string cmGlobalXCodeGenerator::GetTargetFullPath(cmTarget* target)
{
std::string libPath;
cmXCodeObject* xtarget = this->FindXCodeTarget(target);
cmXCodeObject* bset = xtarget->GetObject("buildSettings");
cmXCodeObject* spath = bset->GetObject("SYMROOT");
if(m_XcodeVersion == 21)
{
libPath += "$(CONFIGURATION)/";
}
libPath = spath->GetString();
libPath = libPath.substr(1, libPath.size()-2);
if(target->GetType() == cmTarget::STATIC_LIBRARY)
{
libPath += "lib";
libPath += target->GetName();
libPath += ".a";
}
else if(target->GetType() == cmTarget::SHARED_LIBRARY)
{
libPath += "lib";
libPath += target->GetName();
libPath += ".dylib";
}
else
{
libPath += target->GetName();
}
return libPath;
}
2005-02-18 21:32:51 +03:00
//----------------------------------------------------------------------------
2005-02-04 01:42:55 +03:00
void cmGlobalXCodeGenerator::AddDependAndLinkInformation(cmXCodeObject* target)
{
cmTarget* cmtarget = target->GetcmTarget();
if(!cmtarget)
{
cmSystemTools::Error("Error no target on xobject\n");
2005-02-04 01:42:55 +03:00
return;
}
// compute the correct order for link libraries
cmOrderLinkDirectories orderLibs;
std::string ext =
m_CurrentMakefile->GetSafeDefinition("CMAKE_STATIC_LIBRARY_SUFFIX");
if(ext.size())
{
orderLibs.AddLinkExtension(ext.c_str());
}
ext =
m_CurrentMakefile->GetSafeDefinition("CMAKE_STATIC_LIBRARY_PREFIX");
if(ext.size())
{
orderLibs.SetLinkPrefix(ext.c_str());
}
ext =
m_CurrentMakefile->GetSafeDefinition("CMAKE_SHARED_LIBRARY_SUFFIX");
if(ext.size())
{
orderLibs.AddLinkExtension(ext.c_str());
}
ext =
m_CurrentMakefile->GetSafeDefinition("CMAKE_LINK_LIBRARY_SUFFIX");
if(ext.size())
{
orderLibs.AddLinkExtension(ext.c_str());
}
const char* targetLibrary = cmtarget->GetName();
if(cmtarget->GetType() == cmTarget::EXECUTABLE)
{
targetLibrary = 0;
}
orderLibs.SetLinkInformation(*cmtarget, cmTarget::GENERAL, targetLibrary);
orderLibs.DetermineLibraryPathOrder();
std::vector<cmStdString> libdirs;
std::vector<cmStdString> linkItems;
orderLibs.GetLinkerInformation(libdirs, linkItems);
std::string linkDirs;
// add the library search paths
for(std::vector<cmStdString>::const_iterator libDir = libdirs.begin();
libDir != libdirs.end(); ++libDir)
{
if(libDir->size() && *libDir != "/usr/lib")
{
if(m_XcodeVersion == 21)
{
// now add the same one but append $(CONFIGURATION) to it:
linkDirs += " ";
linkDirs += this->XCodeEscapePath(libDir->c_str());
linkDirs += "/$(CONFIGURATION)";
}
linkDirs += " ";
linkDirs += this->XCodeEscapePath(libDir->c_str());
}
}
2005-09-03 00:29:32 +04:00
this->AppendBuildSettingAttribute(target, "LIBRARY_SEARCH_PATHS", linkDirs.c_str());
// now add the link libraries
for(std::vector<cmStdString>::iterator lib = linkItems.begin();
lib != linkItems.end(); ++lib)
{
cmTarget* t = this->FindTarget(m_CurrentProject.c_str(),
lib->c_str());
2005-02-04 01:42:55 +03:00
cmXCodeObject* dptarget = this->FindXCodeTarget(t);
if(dptarget)
{
this->AddDependTarget(target, dptarget);
2005-02-08 01:36:34 +03:00
if(cmtarget->GetType() != cmTarget::STATIC_LIBRARY)
{
this->AddLinkLibrary(target, t->GetName(), t);
2005-02-08 01:36:34 +03:00
}
2005-02-04 01:42:55 +03:00
}
else
{
2005-02-09 01:12:38 +03:00
if(cmtarget->GetType() != cmTarget::STATIC_LIBRARY)
{
this->AddLinkLibrary(target, lib->c_str());
2005-02-09 01:12:38 +03:00
}
2005-02-04 01:42:55 +03:00
}
}
2005-02-04 01:42:55 +03:00
// write utility dependencies.
2005-02-27 00:58:19 +03:00
for(std::set<cmStdString>::const_iterator i
= cmtarget->GetUtilities().begin();
i != cmtarget->GetUtilities().end(); ++i)
2005-02-04 01:42:55 +03:00
{
cmTarget* t = this->FindTarget(m_CurrentProject.c_str(),
i->c_str());
// if the target is in this project then make target depend
// on it. It may not be in this project if this is a sub
// project from the top.
if(t)
{
cmXCodeObject* dptarget = this->FindXCodeTarget(t);
if(dptarget)
{
this->AddDependTarget(target, dptarget);
}
else
{
std::string m = "Error Utility: ";
m += i->c_str();
m += "\n";
m += "cmtarget ";
if(t)
{
m += t->GetName();
}
m += "\n";
m += "Is on the target ";
m += cmtarget->GetName();
m += "\n";
m += "But it has no xcode target created yet??\n";
m += "Current project is ";
m += m_CurrentProject.c_str();
cmSystemTools::Error(m.c_str());
}
}
}
std::vector<cmStdString> fullPathLibs;
orderLibs.GetFullPathLibraries(fullPathLibs);
for(std::vector<cmStdString>::iterator i = fullPathLibs.begin();
i != fullPathLibs.end(); ++i)
{
target->AddDependLibrary(i->c_str());
2005-02-04 01:42:55 +03:00
}
}
2005-02-03 01:16:07 +03:00
2005-03-17 23:35:44 +03:00
//----------------------------------------------------------------------------
void cmGlobalXCodeGenerator::CreateGroups(cmLocalGenerator* root,
std::vector<cmLocalGenerator*>&
generators)
{
for(std::vector<cmLocalGenerator*>::iterator i = generators.begin();
i != generators.end(); ++i)
{
if(this->IsExcluded(root, *i))
{
continue;
}
cmMakefile* mf = (*i)->GetMakefile();
std::vector<cmSourceGroup> sourceGroups = mf->GetSourceGroups();
cmTargets &tgts = mf->GetTargets();
for(cmTargets::iterator l = tgts.begin(); l != tgts.end(); l++)
{
cmTarget& cmtarget = l->second;
std::vector<cmSourceFile*> & classes = cmtarget.GetSourceFiles();
for(std::vector<cmSourceFile*>::const_iterator s = classes.begin();
s != classes.end(); s++)
{
cmSourceFile* sf = *s;
// Add the file to the list of sources.
std::string const& source = sf->GetFullPath();
cmSourceGroup& sourceGroup =
mf->FindSourceGroup(source.c_str(), sourceGroups);
cmXCodeObject* pbxgroup = this->CreateOrGetPBXGroup(cmtarget, &sourceGroup);
m_GroupMap[sf] = pbxgroup;
}
}
}
}
//----------------------------------------------------------------------------
cmXCodeObject* cmGlobalXCodeGenerator::CreateOrGetPBXGroup(cmTarget& cmtarget,
cmSourceGroup* sg)
{
cmStdString s = cmtarget.GetName();
s += "/";
s += sg->GetName();
std::map<cmStdString, cmXCodeObject* >::iterator i = m_GroupNameMap.find(s);
if(i != m_GroupNameMap.end())
{
return i->second;
}
i = m_TargetGroup.find(cmtarget.GetName());
cmXCodeObject* tgroup = 0;
if(i != m_TargetGroup.end())
{
tgroup = i->second;
}
else
{
tgroup = this->CreateObject(cmXCodeObject::PBXGroup);
m_TargetGroup[cmtarget.GetName()] = tgroup;
cmXCodeObject* tgroupChildren =
this->CreateObject(cmXCodeObject::OBJECT_LIST);
tgroup->AddAttribute("name", this->CreateString(cmtarget.GetName()));
tgroup->AddAttribute("children", tgroupChildren);
tgroup->AddAttribute("refType", this->CreateString("4"));
tgroup->AddAttribute("sourceTree", this->CreateString("<group>"));
m_SourcesGroupChildren->AddObject(tgroup);
}
cmXCodeObject* tgroupChildren = tgroup->GetObject("children");
cmXCodeObject* group = this->CreateObject(cmXCodeObject::PBXGroup);
cmXCodeObject* groupChildren =
this->CreateObject(cmXCodeObject::OBJECT_LIST);
group->AddAttribute("name", this->CreateString(sg->GetName()));
group->AddAttribute("children", groupChildren);
group->AddAttribute("refType", this->CreateString("4"));
group->AddAttribute("sourceTree", this->CreateString("<group>"));
tgroupChildren->AddObject(group);
m_GroupNameMap[s] = group;
return group;
}
2005-02-03 01:16:07 +03:00
2005-01-28 00:11:44 +03:00
//----------------------------------------------------------------------------
void cmGlobalXCodeGenerator::CreateXCodeObjects(cmLocalGenerator* root,
2005-01-28 00:11:44 +03:00
std::vector<cmLocalGenerator*>&
generators
2005-02-01 21:07:42 +03:00
)
2005-01-25 01:35:54 +03:00
{
this->ClearXCodeObjects();
2005-02-02 01:17:12 +03:00
m_RootObject = 0;
2005-02-15 00:46:32 +03:00
m_SourcesGroupChildren = 0;
2005-02-09 01:12:38 +03:00
m_MainGroupChildren = 0;
2005-01-28 00:11:44 +03:00
cmXCodeObject* group = this->CreateObject(cmXCodeObject::ATTRIBUTE_GROUP);
group->AddAttribute("COPY_PHASE_STRIP", this->CreateString("NO"));
2005-02-11 22:25:05 +03:00
cmXCodeObject* developBuildStyle =
this->CreateObject(cmXCodeObject::PBXBuildStyle);
2005-09-03 00:29:32 +04:00
if(m_XcodeVersion == 15)
{
developBuildStyle->AddAttribute("name", this->CreateString("Development"));
}
else
{
developBuildStyle->AddAttribute("name", this->CreateString("Debug"));
}
2005-01-25 01:35:54 +03:00
developBuildStyle->AddAttribute("buildSettings", group);
2005-01-28 00:11:44 +03:00
group = this->CreateObject(cmXCodeObject::ATTRIBUTE_GROUP);
group->AddAttribute("COPY_PHASE_STRIP", this->CreateString("YES"));
2005-02-11 22:25:05 +03:00
cmXCodeObject* deployBuildStyle =
this->CreateObject(cmXCodeObject::PBXBuildStyle);
2005-09-03 00:29:32 +04:00
if(m_XcodeVersion == 15)
{
deployBuildStyle->AddAttribute("name", this->CreateString("Deployment"));
}
else
{
deployBuildStyle->AddAttribute("name", this->CreateString("Release"));
}
2005-01-25 01:35:54 +03:00
deployBuildStyle->AddAttribute("buildSettings", group);
2005-01-28 00:11:44 +03:00
cmXCodeObject* listObjs = this->CreateObject(cmXCodeObject::OBJECT_LIST);
2005-01-25 01:35:54 +03:00
listObjs->AddObject(developBuildStyle);
listObjs->AddObject(deployBuildStyle);
2005-01-29 00:00:10 +03:00
cmXCodeObject* mainGroup = this->CreateObject(cmXCodeObject::PBXGroup);
2005-02-09 01:12:38 +03:00
m_MainGroupChildren =
2005-02-05 01:58:58 +03:00
this->CreateObject(cmXCodeObject::OBJECT_LIST);
2005-02-09 01:12:38 +03:00
mainGroup->AddAttribute("children", m_MainGroupChildren);
2005-01-29 00:00:10 +03:00
mainGroup->AddAttribute("refType", this->CreateString("4"));
2005-02-03 01:16:07 +03:00
mainGroup->AddAttribute("sourceTree", this->CreateString("<group>"));
2005-01-29 00:00:10 +03:00
2005-02-15 00:46:32 +03:00
cmXCodeObject* sourcesGroup = this->CreateObject(cmXCodeObject::PBXGroup);
m_SourcesGroupChildren =
this->CreateObject(cmXCodeObject::OBJECT_LIST);
sourcesGroup->AddAttribute("name", this->CreateString("Sources"));
sourcesGroup->AddAttribute("children", m_SourcesGroupChildren);
sourcesGroup->AddAttribute("refType", this->CreateString("4"));
sourcesGroup->AddAttribute("sourceTree", this->CreateString("<group>"));
m_MainGroupChildren->AddObject(sourcesGroup);
2005-03-17 23:35:44 +03:00
// now create the cmake groups
this->CreateGroups(root, generators);
2005-02-15 00:46:32 +03:00
2005-02-05 01:58:58 +03:00
cmXCodeObject* productGroup = this->CreateObject(cmXCodeObject::PBXGroup);
productGroup->AddAttribute("name", this->CreateString("Products"));
productGroup->AddAttribute("refType", this->CreateString("4"));
productGroup->AddAttribute("sourceTree", this->CreateString("<group>"));
cmXCodeObject* productGroupChildren =
this->CreateObject(cmXCodeObject::OBJECT_LIST);
productGroup->AddAttribute("children", productGroupChildren);
2005-02-09 01:12:38 +03:00
m_MainGroupChildren->AddObject(productGroup);
2005-02-05 01:58:58 +03:00
2005-01-28 00:11:44 +03:00
m_RootObject = this->CreateObject(cmXCodeObject::PBXProject);
group = this->CreateObject(cmXCodeObject::ATTRIBUTE_GROUP);
2005-02-05 01:58:58 +03:00
m_RootObject->AddAttribute("mainGroup",
this->CreateObjectReference(mainGroup));
2005-01-25 01:35:54 +03:00
m_RootObject->AddAttribute("buildSettings", group);
m_RootObject->AddAttribute("buildSyles", listObjs);
2005-02-05 01:58:58 +03:00
m_RootObject->AddAttribute("hasScannedForEncodings",
this->CreateString("0"));
2005-09-03 00:29:32 +04:00
cmXCodeObject* configlist = this->CreateObject(cmXCodeObject::XCConfigurationList);
cmXCodeObject* configDebug = this->CreateObject(cmXCodeObject::XCBuildConfiguration);
cmXCodeObject* configRelease = this->CreateObject(cmXCodeObject::XCBuildConfiguration);
cmXCodeObject* configDefault = this->CreateObject(cmXCodeObject::XCBuildConfiguration);
cmXCodeObject* buildConfigurations =
this->CreateObject(cmXCodeObject::OBJECT_LIST);
buildConfigurations->AddObject(configDebug);
buildConfigurations->AddObject(configRelease);
buildConfigurations->AddObject(configDefault);
configlist->AddAttribute("buildConfigurations", buildConfigurations);
cmXCodeObject* buildSettings =
this->CreateObject(cmXCodeObject::ATTRIBUTE_GROUP);
configDebug->AddAttribute("name", this->CreateString("Debug"));
configDebug->AddAttribute("buildSettings", buildSettings);
configRelease->AddAttribute("name", this->CreateString("Release"));
configRelease->AddAttribute("buildSettings", buildSettings);
configDefault->AddAttribute("name", this->CreateString("Default"));
configDefault->AddAttribute("buildSettings", buildSettings);
m_RootObject->AddAttribute("buildConfigurationList",
this->CreateObjectReference(configlist));
2005-01-28 00:11:44 +03:00
std::vector<cmXCodeObject*> targets;
for(std::vector<cmLocalGenerator*>::iterator i = generators.begin();
i != generators.end(); ++i)
{
if(!this->IsExcluded(root, *i))
{
this->CreateXCodeTargets(*i, targets);
}
2005-01-28 00:11:44 +03:00
}
// loop over all targets and add link and depend info
2005-01-28 00:11:44 +03:00
for(std::vector<cmXCodeObject*>::iterator i = targets.begin();
i != targets.end(); ++i)
{
2005-02-04 01:42:55 +03:00
cmXCodeObject* t = *i;
this->AddDependAndLinkInformation(t);
}
// now create xcode depend hack makefile
this->CreateXCodeDependHackTarget(targets);
// now add all targets to the root object
cmXCodeObject* allTargets = this->CreateObject(cmXCodeObject::OBJECT_LIST);
for(std::vector<cmXCodeObject*>::iterator i = targets.begin();
i != targets.end(); ++i)
{
cmXCodeObject* t = *i;
2005-02-04 01:42:55 +03:00
allTargets->AddObject(t);
2005-02-05 01:58:58 +03:00
cmXCodeObject* productRef = t->GetObject("productReference");
if(productRef)
{
2005-02-08 01:36:34 +03:00
productGroupChildren->AddObject(productRef->GetObject());
2005-02-05 01:58:58 +03:00
}
2005-01-28 00:11:44 +03:00
}
m_RootObject->AddAttribute("targets", allTargets);
2005-01-25 01:35:54 +03:00
}
//----------------------------------------------------------------------------
void
cmGlobalXCodeGenerator::CreateXCodeDependHackTarget(
std::vector<cmXCodeObject*>& targets)
{
cmGeneratedFileStream makefileStream(m_CurrentXCodeHackMakefile.c_str());
if(!makefileStream)
{
cmSystemTools::Error("Could not create",
m_CurrentXCodeHackMakefile.c_str());
return;
}
// one more pass for external depend information not handled
// correctly by xcode
makefileStream << "# DO NOT EDIT\n";
makefileStream << "# This makefile makes sure all linkable targets are \n";
makefileStream
<< "# up-to-date with anything they link to,avoiding a bug in XCode 1.5\n";
makefileStream << "all: ";
for(std::vector<cmXCodeObject*>::iterator i = targets.begin();
i != targets.end(); ++i)
{
cmXCodeObject* target = *i;
cmTarget* t =target->GetcmTarget();
if(t->GetType() == cmTarget::EXECUTABLE ||
t->GetType() == cmTarget::SHARED_LIBRARY ||
t->GetType() == cmTarget::MODULE_LIBRARY)
{
makefileStream << "\\\n\t"
2005-02-24 23:34:14 +03:00
<< this->
2005-02-25 01:46:49 +03:00
ConvertToRelativeForMake(this->GetTargetFullPath(target->GetcmTarget()).c_str());
}
}
makefileStream << "\n\n";
makefileStream
<< "# For each target create a dummy rule "
"so the target does not have to exist\n";
std::set<cmStdString> emitted;
for(std::vector<cmXCodeObject*>::iterator i = targets.begin();
i != targets.end(); ++i)
{
cmXCodeObject* target = *i;
std::vector<cmStdString> const& deplibs = target->GetDependLibraries();
for(std::vector<cmStdString>::const_iterator d = deplibs.begin();
d != deplibs.end(); ++d)
{
if(emitted.insert(*d).second)
{
2005-02-25 01:46:49 +03:00
makefileStream << this->ConvertToRelativeForMake(d->c_str()) << ":\n";
}
}
}
makefileStream << "\n\n";
makefileStream <<
"# Each linkable target depends on everything it links to.\n";
makefileStream
<< "#And the target is removed if it is older than what it linkes to\n";
for(std::vector<cmXCodeObject*>::iterator i = targets.begin();
i != targets.end(); ++i)
{
cmXCodeObject* target = *i;
cmTarget* t =target->GetcmTarget();
if(t->GetType() == cmTarget::EXECUTABLE ||
t->GetType() == cmTarget::SHARED_LIBRARY ||
t->GetType() == cmTarget::MODULE_LIBRARY)
{
std::vector<cmStdString> const& deplibs = target->GetDependLibraries();
std::string tfull = this->GetTargetFullPath(target->GetcmTarget());
2005-02-25 01:46:49 +03:00
makefileStream << this->ConvertToRelativeForMake(tfull.c_str()) << ": ";
for(std::vector<cmStdString>::const_iterator d = deplibs.begin();
d != deplibs.end(); ++d)
{
2005-02-25 01:46:49 +03:00
makefileStream << "\\\n\t" << this->ConvertToRelativeForMake(d->c_str());
}
makefileStream << "\n";
2005-02-24 23:34:14 +03:00
makefileStream << "\t/bin/rm -f "
2005-02-25 01:46:49 +03:00
<< this->ConvertToRelativeForMake(tfull.c_str()) << "\n";
makefileStream << "\n\n";
}
}
}
2005-01-25 01:35:54 +03:00
//----------------------------------------------------------------------------
2005-02-11 22:25:05 +03:00
void
cmGlobalXCodeGenerator::OutputXCodeProject(cmLocalGenerator* root,
std::vector<cmLocalGenerator*>&
generators)
2005-01-25 01:35:54 +03:00
{
if(generators.size() == 0)
{
return;
}
this->CreateXCodeObjects(root,
generators);
std::string xcodeDir = root->GetMakefile()->GetStartOutputDirectory();
xcodeDir += "/";
xcodeDir += root->GetMakefile()->GetProjectName();
xcodeDir += ".xcode";
2005-09-03 00:29:32 +04:00
if(m_XcodeVersion > 20)
{
xcodeDir += "proj";
}
2005-01-25 01:35:54 +03:00
cmSystemTools::MakeDirectory(xcodeDir.c_str());
xcodeDir += "/project.pbxproj";
cmGeneratedFileStream fout(xcodeDir.c_str());
fout.SetCopyIfDifferent(true);
if(!fout)
{
return;
}
this->WriteXCodePBXProj(fout, root, generators);
this->ClearXCodeObjects();
}
//----------------------------------------------------------------------------
2005-02-11 22:25:05 +03:00
void
cmGlobalXCodeGenerator::WriteXCodePBXProj(std::ostream& fout,
cmLocalGenerator* ,
std::vector<cmLocalGenerator*>& )
2005-01-25 01:35:54 +03:00
{
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);
fout << "objectVersion = 39;\n";
cmXCodeObject::PrintList(m_XCodeObjects, fout);
cmXCodeObject::Indent(1, fout);
fout << "rootObject = " << m_RootObject->GetId() << ";\n";
fout << "}\n";
}
//----------------------------------------------------------------------------
2005-02-11 22:25:05 +03:00
void cmGlobalXCodeGenerator::GetDocumentation(cmDocumentationEntry& entry)
const
2005-01-25 01:35:54 +03:00
{
entry.name = this->GetName();
2005-02-11 22:25:05 +03:00
entry.brief = "Generate XCode project files.";
2005-01-25 01:35:54 +03:00
entry.full = "";
}
2005-02-18 21:32:51 +03:00
//----------------------------------------------------------------------------
2005-02-25 01:46:49 +03:00
std::string cmGlobalXCodeGenerator::ConvertToRelativeForMake(const char* p)
2005-02-18 21:32:51 +03:00
{
if ( !m_CurrentMakefile->IsOn("CMAKE_USE_RELATIVE_PATHS") )
{
return cmSystemTools::ConvertToOutputPath(p);
}
2005-02-25 01:46:49 +03:00
else
2005-02-18 21:32:51 +03:00
{
2005-06-10 16:41:47 +04:00
std::string ret =
this->ConvertToRelativePath(m_CurrentOutputDirectoryComponents, p);
2005-02-25 01:46:49 +03:00
return cmSystemTools::ConvertToOutputPath(ret.c_str());
2005-02-18 21:32:51 +03:00
}
2005-02-25 01:46:49 +03:00
}
//----------------------------------------------------------------------------
std::string cmGlobalXCodeGenerator::ConvertToRelativeForXCode(const char* p)
{
if ( !m_CurrentMakefile->IsOn("CMAKE_USE_RELATIVE_PATHS") )
2005-02-18 21:32:51 +03:00
{
2005-02-25 01:46:49 +03:00
return cmSystemTools::ConvertToOutputPath(p);
2005-02-18 21:32:51 +03:00
}
2005-02-25 01:46:49 +03:00
else
2005-02-18 21:32:51 +03:00
{
2005-06-10 16:41:47 +04:00
std::string ret =
this->ConvertToRelativePath(m_ProjectOutputDirectoryComponents, p);
2005-02-25 01:46:49 +03:00
return cmSystemTools::ConvertToOutputPath(ret.c_str());
2005-02-18 21:32:51 +03:00
}
}
2005-02-24 23:34:14 +03:00
std::string cmGlobalXCodeGenerator::XCodeEscapePath(const char* p)
{
std::string ret = p;
if(ret.find(' ') != ret.npos)
{
std::string t = ret;
ret = "\\\"";
ret += t;
ret += "\\\"";
}
return ret;
}