2009-09-28 11:43:28 -04:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
|
2005-01-24 17:35:54 -05:00
|
|
|
|
2009-09-28 11:43:28 -04:00
|
|
|
Distributed under the OSI-approved BSD License (the "License");
|
|
|
|
see accompanying file Copyright.txt for details.
|
2005-01-24 17:35:54 -05:00
|
|
|
|
2009-09-28 11:43:28 -04:00
|
|
|
This software is distributed WITHOUT ANY WARRANTY; without even the
|
|
|
|
implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
See the License for more information.
|
|
|
|
============================================================================*/
|
2005-01-24 17:35:54 -05:00
|
|
|
#ifndef cmGlobalXCodeGenerator_h
|
|
|
|
#define cmGlobalXCodeGenerator_h
|
|
|
|
|
|
|
|
#include "cmGlobalGenerator.h"
|
|
|
|
#include "cmXCodeObject.h"
|
2005-02-15 17:25:40 -05:00
|
|
|
#include "cmCustomCommand.h"
|
2012-11-19 15:48:33 +01:00
|
|
|
class cmGlobalGeneratorFactory;
|
2005-01-24 17:35:54 -05:00
|
|
|
class cmTarget;
|
2005-01-27 16:11:44 -05:00
|
|
|
class cmSourceFile;
|
2005-03-17 15:35:44 -05:00
|
|
|
class cmSourceGroup;
|
|
|
|
|
2005-01-24 17:35:54 -05:00
|
|
|
|
|
|
|
/** \class cmGlobalXCodeGenerator
|
|
|
|
* \brief Write a Unix makefiles.
|
|
|
|
*
|
|
|
|
* cmGlobalXCodeGenerator manages UNIX build process for a tree
|
|
|
|
*/
|
|
|
|
class cmGlobalXCodeGenerator : public cmGlobalGenerator
|
|
|
|
{
|
|
|
|
public:
|
2009-09-23 08:48:39 -04:00
|
|
|
cmGlobalXCodeGenerator(std::string const& version);
|
2012-11-19 15:48:33 +01:00
|
|
|
static cmGlobalGeneratorFactory* NewFactory();
|
2005-11-18 14:12:09 -05:00
|
|
|
|
2005-01-24 17:35:54 -05:00
|
|
|
///! Get the name for the generator.
|
2014-02-24 17:36:27 -05:00
|
|
|
virtual std::string GetName() const {
|
2005-01-24 17:35:54 -05:00
|
|
|
return cmGlobalXCodeGenerator::GetActualName();}
|
2014-02-24 17:36:27 -05:00
|
|
|
static std::string GetActualName() {return "Xcode";}
|
2005-01-24 17:35:54 -05:00
|
|
|
|
|
|
|
/** Get the documentation entry for this generator. */
|
2012-11-19 16:42:24 +01:00
|
|
|
static void GetDocumentation(cmDocumentationEntry& entry);
|
2012-08-13 13:42:58 -04:00
|
|
|
|
2005-01-24 17:35:54 -05:00
|
|
|
///! Create a local generator appropriate to this Global Generator
|
|
|
|
virtual cmLocalGenerator *CreateLocalGenerator();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Try to determine system infomation such as shared library
|
2012-08-13 13:42:58 -04:00
|
|
|
* extension, pthreads, byte order etc.
|
2005-01-24 17:35:54 -05:00
|
|
|
*/
|
2012-08-13 13:42:58 -04:00
|
|
|
virtual void EnableLanguage(std::vector<std::string>const& languages,
|
2007-06-28 09:09:26 -04:00
|
|
|
cmMakefile *, bool optional);
|
2005-01-24 17:35:54 -05:00
|
|
|
/**
|
|
|
|
* Try running cmake and building a file. This is used for dynalically
|
|
|
|
* loaded commands, not as part of the usual build process.
|
|
|
|
*/
|
2013-11-15 13:33:32 -05:00
|
|
|
virtual void GenerateBuildCommand(
|
|
|
|
std::vector<std::string>& makeCommand,
|
2014-02-24 17:38:55 -05:00
|
|
|
const std::string& makeProgram,
|
2014-02-07 15:40:05 -05:00
|
|
|
const std::string& projectName,
|
2014-02-24 17:38:30 -05:00
|
|
|
const std::string& projectDir,
|
2014-02-06 17:31:47 -05:00
|
|
|
const std::string& targetName,
|
2014-02-09 22:48:34 -05:00
|
|
|
const std::string& config,
|
2013-11-15 13:33:32 -05:00
|
|
|
bool fast,
|
|
|
|
std::vector<std::string> const& makeOptions = std::vector<std::string>()
|
|
|
|
);
|
2005-01-24 17:35:54 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Generate the all required files for building this project/tree. This
|
|
|
|
* basically creates a series of LocalGenerators for each directory and
|
2012-08-13 13:42:58 -04:00
|
|
|
* requests that they Generate.
|
2005-01-24 17:35:54 -05:00
|
|
|
*/
|
|
|
|
virtual void Generate();
|
|
|
|
|
2006-02-03 12:03:57 -05:00
|
|
|
/** Append the subdirectory for the given configuration. */
|
2014-02-21 19:05:55 -05:00
|
|
|
virtual void AppendDirectoryForConfig(const std::string& prefix,
|
2014-02-09 22:48:34 -05:00
|
|
|
const std::string& config,
|
2014-02-21 19:05:55 -05:00
|
|
|
const std::string& suffix,
|
2006-03-03 12:58:48 -05:00
|
|
|
std::string& dir);
|
2006-02-03 12:03:57 -05:00
|
|
|
|
2006-02-24 17:35:35 -05:00
|
|
|
///! What is the configurations directory variable called?
|
2012-03-08 16:18:55 -05:00
|
|
|
virtual const char* GetCMakeCFGIntDir() const;
|
2014-02-01 21:18:04 -07:00
|
|
|
///! expand CFGIntDir
|
|
|
|
virtual std::string ExpandCFGIntDir(const std::string& str,
|
|
|
|
const std::string& config) const;
|
2006-02-24 17:35:35 -05:00
|
|
|
|
2007-02-16 16:12:17 -05:00
|
|
|
void SetCurrentLocalGenerator(cmLocalGenerator*);
|
2009-12-04 12:09:01 -05:00
|
|
|
|
|
|
|
/** Return true if the generated build tree may contain multiple builds.
|
|
|
|
i.e. "Can I build Debug and Release in the same tree?" */
|
|
|
|
virtual bool IsMultiConfig();
|
|
|
|
|
2012-12-20 10:16:57 -05:00
|
|
|
virtual bool SetGeneratorToolset(std::string const& ts);
|
2013-06-27 11:49:06 -04:00
|
|
|
void AppendFlag(std::string& flags, std::string const& flag);
|
2012-08-13 13:42:58 -04:00
|
|
|
private:
|
2005-03-17 15:35:44 -05:00
|
|
|
cmXCodeObject* CreateOrGetPBXGroup(cmTarget& cmtarget,
|
|
|
|
cmSourceGroup* sg);
|
2011-02-15 14:34:14 +01:00
|
|
|
cmXCodeObject* CreatePBXGroup(cmXCodeObject *parent,
|
2014-02-10 00:21:34 -05:00
|
|
|
std::string name);
|
2005-03-17 15:35:44 -05:00
|
|
|
void CreateGroups(cmLocalGenerator* root,
|
|
|
|
std::vector<cmLocalGenerator*>&
|
|
|
|
generators);
|
2005-02-24 15:34:14 -05:00
|
|
|
std::string XCodeEscapePath(const char* p);
|
2009-09-22 16:18:31 -04:00
|
|
|
std::string RelativeToSource(const char* p);
|
|
|
|
std::string RelativeToBinary(const char* p);
|
2005-02-24 17:46:49 -05:00
|
|
|
std::string ConvertToRelativeForXCode(const char* p);
|
|
|
|
std::string ConvertToRelativeForMake(const char* p);
|
2005-02-15 17:25:40 -05:00
|
|
|
void CreateCustomCommands(cmXCodeObject* buildPhases,
|
|
|
|
cmXCodeObject* sourceBuildPhase,
|
|
|
|
cmXCodeObject* headerBuildPhase,
|
2007-08-14 11:45:15 -04:00
|
|
|
cmXCodeObject* resourceBuildPhase,
|
|
|
|
std::vector<cmXCodeObject*> contentBuildPhases,
|
2005-02-15 17:25:40 -05:00
|
|
|
cmXCodeObject* frameworkBuildPhase,
|
|
|
|
cmTarget& cmtarget);
|
2007-08-14 11:45:15 -04:00
|
|
|
|
2008-07-03 13:28:54 -04:00
|
|
|
std::string ComputeInfoPListLocation(cmTarget& target);
|
|
|
|
|
2005-02-15 17:25:40 -05:00
|
|
|
void AddCommandsToBuildPhase(cmXCodeObject* buildphase,
|
|
|
|
cmTarget& target,
|
2012-08-13 13:42:58 -04:00
|
|
|
std::vector<cmCustomCommand>
|
2005-02-15 17:25:40 -05:00
|
|
|
const & commands,
|
|
|
|
const char* commandFileName);
|
2012-08-13 13:42:58 -04:00
|
|
|
|
|
|
|
void CreateCustomRulesMakefile(const char* makefileBasename,
|
2007-05-09 08:25:45 -04:00
|
|
|
cmTarget& target,
|
2007-05-10 11:38:23 -04:00
|
|
|
std::vector<cmCustomCommand> const & commands,
|
2014-02-09 22:48:34 -05:00
|
|
|
const std::string& configName,
|
2014-02-10 00:21:34 -05:00
|
|
|
const std::map<std::string, std::string>&
|
2007-05-09 08:25:45 -04:00
|
|
|
multipleOutputPairs
|
|
|
|
);
|
2012-08-13 13:42:58 -04:00
|
|
|
|
2013-12-10 15:16:23 +01:00
|
|
|
cmXCodeObject* FindXCodeTarget(cmTarget const*);
|
2014-02-06 17:31:47 -05:00
|
|
|
std::string GetOrCreateId(const std::string& name, const std::string& id);
|
2011-08-23 18:22:33 -04:00
|
|
|
|
2005-01-25 15:26:57 -05:00
|
|
|
// create cmXCodeObject from these functions so that memory can be managed
|
2006-03-15 11:02:08 -05:00
|
|
|
// correctly. All objects created are stored in this->XCodeObjects.
|
2005-01-27 16:11:44 -05:00
|
|
|
cmXCodeObject* CreateObject(cmXCodeObject::PBXType ptype);
|
|
|
|
cmXCodeObject* CreateObject(cmXCodeObject::Type type);
|
2014-02-03 21:16:12 -05:00
|
|
|
cmXCodeObject* CreateString(const std::string& s);
|
2005-01-28 16:00:10 -05:00
|
|
|
cmXCodeObject* CreateObjectReference(cmXCodeObject*);
|
2005-02-02 17:16:07 -05:00
|
|
|
cmXCodeObject* CreateXCodeTarget(cmTarget& target,
|
|
|
|
cmXCodeObject* buildPhases);
|
2009-07-10 16:51:44 -04:00
|
|
|
void ForceLinkerLanguages();
|
|
|
|
void ForceLinkerLanguage(cmTarget& cmtarget);
|
2009-07-02 14:13:46 -04:00
|
|
|
const char* GetTargetFileType(cmTarget& cmtarget);
|
|
|
|
const char* GetTargetProductType(cmTarget& cmtarget);
|
2009-07-02 14:14:03 -04:00
|
|
|
std::string AddConfigurations(cmXCodeObject* target, cmTarget& cmtarget);
|
2012-08-13 13:42:58 -04:00
|
|
|
void AppendOrAddBuildSetting(cmXCodeObject* settings, const char* attr,
|
2005-09-08 14:35:37 -04:00
|
|
|
const char* value);
|
2012-08-13 13:42:58 -04:00
|
|
|
void AppendBuildSettingAttribute(cmXCodeObject* target, const char* attr,
|
2014-02-09 22:48:34 -05:00
|
|
|
const char* value,
|
|
|
|
const std::string& configName);
|
2005-02-03 17:42:55 -05:00
|
|
|
cmXCodeObject* CreateUtilityTarget(cmTarget& target);
|
|
|
|
void AddDependAndLinkInformation(cmXCodeObject* target);
|
2005-02-02 17:16:07 -05:00
|
|
|
void CreateBuildSettings(cmTarget& target,
|
|
|
|
cmXCodeObject* buildSettings,
|
2014-02-09 22:48:34 -05:00
|
|
|
const std::string& buildType);
|
2005-09-02 16:29:32 -04:00
|
|
|
std::string ExtractFlag(const char* flag, std::string& flags);
|
2006-03-15 11:02:08 -05:00
|
|
|
// delete all objects in the this->XCodeObjects vector.
|
2005-01-24 17:35:54 -05:00
|
|
|
void ClearXCodeObjects();
|
|
|
|
void CreateXCodeObjects(cmLocalGenerator* root,
|
|
|
|
std::vector<cmLocalGenerator*>& generators);
|
|
|
|
void OutputXCodeProject(cmLocalGenerator* root,
|
|
|
|
std::vector<cmLocalGenerator*>& generators);
|
2009-09-19 12:00:09 -04:00
|
|
|
void WriteXCodePBXProj(std::ostream& fout, cmLocalGenerator* root,
|
|
|
|
std::vector<cmLocalGenerator*>& generators);
|
2012-03-15 12:05:31 -04:00
|
|
|
cmXCodeObject* CreateXCodeFileReferenceFromPath(const std::string &fullpath,
|
|
|
|
cmTarget& cmtarget,
|
|
|
|
const std::string &lang);
|
|
|
|
cmXCodeObject* CreateXCodeSourceFileFromPath(const std::string &fullpath,
|
|
|
|
cmTarget& cmtarget,
|
|
|
|
const std::string &lang);
|
2008-10-10 08:11:08 -04:00
|
|
|
cmXCodeObject* CreateXCodeFileReference(cmSourceFile* sf,
|
|
|
|
cmTarget& cmtarget);
|
2012-08-13 13:42:58 -04:00
|
|
|
cmXCodeObject* CreateXCodeSourceFile(cmLocalGenerator* gen,
|
2006-01-25 08:38:06 -05:00
|
|
|
cmSourceFile* sf,
|
|
|
|
cmTarget& cmtarget);
|
2012-08-13 13:42:58 -04:00
|
|
|
void CreateXCodeTargets(cmLocalGenerator* gen,
|
2006-05-11 15:39:46 -04:00
|
|
|
std::vector<cmXCodeObject*>&);
|
2009-03-16 14:30:24 -04:00
|
|
|
bool IsHeaderFile(cmSourceFile*);
|
2005-02-03 17:42:55 -05:00
|
|
|
void AddDependTarget(cmXCodeObject* target,
|
|
|
|
cmXCodeObject* dependTarget);
|
2005-02-17 17:54:14 -05:00
|
|
|
void CreateXCodeDependHackTarget(std::vector<cmXCodeObject*>& targets);
|
2005-02-18 13:32:51 -05:00
|
|
|
bool SpecialTargetEmitted(std::string const& tname);
|
2007-05-11 13:52:33 -04:00
|
|
|
void SetGenerationRoot(cmLocalGenerator* root);
|
2012-08-13 13:42:58 -04:00
|
|
|
void AddExtraTargets(cmLocalGenerator* root,
|
2005-02-18 13:32:51 -05:00
|
|
|
std::vector<cmLocalGenerator*>& gens);
|
2012-08-13 13:42:58 -04:00
|
|
|
cmXCodeObject* CreateBuildPhase(const char* name,
|
2005-02-28 15:07:13 -05:00
|
|
|
const char* name2,
|
|
|
|
cmTarget& cmtarget,
|
|
|
|
const std::vector<cmCustomCommand>&);
|
2011-01-13 12:07:23 -05:00
|
|
|
void CreateReRunCMakeFile(cmLocalGenerator* root,
|
|
|
|
std::vector<cmLocalGenerator*> const& gens);
|
2006-02-24 13:13:14 -05:00
|
|
|
|
2014-02-03 21:20:56 -05:00
|
|
|
std::string LookupFlags(const std::string& varNamePrefix,
|
|
|
|
const std::string& varNameLang,
|
|
|
|
const std::string& varNameSuffix,
|
|
|
|
const std::string& default_flags);
|
2007-02-16 16:12:17 -05:00
|
|
|
|
2012-11-19 15:48:33 +01:00
|
|
|
class Factory;
|
2009-06-29 13:02:05 -04:00
|
|
|
class BuildObjectListOrString;
|
|
|
|
friend class BuildObjectListOrString;
|
|
|
|
|
|
|
|
void AppendDefines(BuildObjectListOrString& defs, const char* defines_list,
|
2008-01-14 09:20:58 -05:00
|
|
|
bool dflag = false);
|
2009-07-29 16:40:07 -04:00
|
|
|
void AppendDefines(BuildObjectListOrString& defs,
|
|
|
|
std::vector<std::string> const& defines,
|
|
|
|
bool dflag = false);
|
2008-01-14 09:20:58 -05:00
|
|
|
|
2005-07-19 16:40:44 -04:00
|
|
|
protected:
|
2011-10-07 08:22:05 -04:00
|
|
|
virtual const char* GetInstallTargetName() const { return "install"; }
|
|
|
|
virtual const char* GetPackageTargetName() const { return "package"; }
|
2006-03-01 08:28:39 -05:00
|
|
|
|
2009-09-23 08:48:39 -04:00
|
|
|
unsigned int XcodeVersion;
|
|
|
|
std::string VersionString;
|
2014-02-10 00:21:34 -05:00
|
|
|
std::set<std::string> XCodeObjectIDs;
|
2006-03-15 11:02:08 -05:00
|
|
|
std::vector<cmXCodeObject*> XCodeObjects;
|
|
|
|
cmXCodeObject* RootObject;
|
2005-09-02 16:29:32 -04:00
|
|
|
private:
|
2014-02-03 21:20:56 -05:00
|
|
|
void PrintCompilerAdvice(std::ostream&, std::string const&,
|
|
|
|
const char*) const {}
|
2012-03-13 16:41:28 -04:00
|
|
|
void ComputeTargetObjects(cmGeneratorTarget* gt) const;
|
|
|
|
|
2012-03-14 17:46:56 -04:00
|
|
|
std::string GetObjectsNormalDirectory(
|
|
|
|
const std::string &projName,
|
|
|
|
const std::string &configName,
|
|
|
|
const cmTarget *t) const;
|
|
|
|
|
2011-08-23 18:22:33 -04:00
|
|
|
void addObject(cmXCodeObject *obj);
|
2011-06-06 17:34:43 -04:00
|
|
|
std::string PostBuildMakeTarget(std::string const& tName,
|
|
|
|
std::string const& configName);
|
2006-03-15 11:02:08 -05:00
|
|
|
cmXCodeObject* MainGroupChildren;
|
|
|
|
cmXCodeObject* SourcesGroupChildren;
|
2007-08-14 11:45:15 -04:00
|
|
|
cmXCodeObject* ResourcesGroupChildren;
|
2006-03-15 11:02:08 -05:00
|
|
|
cmMakefile* CurrentMakefile;
|
|
|
|
cmLocalGenerator* CurrentLocalGenerator;
|
|
|
|
std::vector<std::string> CurrentConfigurationTypes;
|
|
|
|
std::string CurrentReRunCMakeMakefile;
|
|
|
|
std::string CurrentXCodeHackMakefile;
|
|
|
|
std::string CurrentProject;
|
2014-02-10 00:21:34 -05:00
|
|
|
std::set<std::string> TargetDoneSet;
|
2006-03-15 11:02:08 -05:00
|
|
|
std::vector<std::string> CurrentOutputDirectoryComponents;
|
2009-09-22 16:18:31 -04:00
|
|
|
std::vector<std::string> ProjectSourceDirectoryComponents;
|
2006-03-15 11:02:08 -05:00
|
|
|
std::vector<std::string> ProjectOutputDirectoryComponents;
|
2014-02-10 00:21:34 -05:00
|
|
|
std::map<std::string, cmXCodeObject* > GroupMap;
|
|
|
|
std::map<std::string, cmXCodeObject* > GroupNameMap;
|
|
|
|
std::map<std::string, cmXCodeObject* > TargetGroup;
|
|
|
|
std::map<std::string, cmXCodeObject* > FileRefs;
|
2006-05-16 09:54:49 -04:00
|
|
|
std::vector<std::string> Architectures;
|
2012-12-20 10:16:57 -05:00
|
|
|
std::string PlatformToolset;
|
2005-01-24 17:35:54 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|