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