CMake/Source/cmGlobalXCodeGenerator.h

261 lines
11 KiB
C
Raw Normal View History

Simplify CMake per-source license notices Per-source copyright/license notice headers that spell out copyright holder names and years are hard to maintain and often out-of-date or plain wrong. Precise contributor information is already maintained automatically by the version control tool. Ultimately it is the receiver of a file who is responsible for determining its licensing status, and per-source notices are merely a convenience. Therefore it is simpler and more accurate for each source to have a generic notice of the license name and references to more detailed information on copyright holders and full license terms. Our `Copyright.txt` file now contains a list of Contributors whose names appeared source-level copyright notices. It also references version control history for more precise information. Therefore we no longer need to spell out the list of Contributors in each source file notice. Replace CMake per-source copyright/license notice headers with a short description of the license and links to `Copyright.txt` and online information available from "https://cmake.org/licensing". The online URL also handles cases of modules being copied out of our source into other projects, so we can drop our notices about replacing links with full license text. Run the `Utilities/Scripts/filter-notices.bash` script to perform the majority of the replacements mechanically. Manually fix up shebang lines and trailing newlines in a few files. Manually update the notices in a few files that the script does not handle.
2016-09-27 19:01:08 +00:00
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
file Copyright.txt or https://cmake.org/licensing for details. */
2005-01-24 22:35:54 +00:00
#ifndef cmGlobalXCodeGenerator_h
#define cmGlobalXCodeGenerator_h
2016-11-22 23:41:44 +00:00
#include <cmConfigure.h>
#include <iosfwd>
#include <map>
#include <set>
#include <string>
#include <vector>
2016-11-22 23:41:44 +00:00
#include "cmGlobalGenerator.h"
#include "cmXCodeObject.h"
2016-11-22 23:41:44 +00:00
class cmCustomCommand;
class cmGeneratorTarget;
class cmGlobalGeneratorFactory;
2016-11-22 23:41:44 +00:00
class cmLocalGenerator;
class cmMakefile;
2005-01-27 21:11:44 +00:00
class cmSourceFile;
2005-03-17 20:35:44 +00:00
class cmSourceGroup;
2016-11-22 23:41:44 +00:00
class cmake;
struct cmDocumentationEntry;
2005-03-17 20:35:44 +00:00
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:
cmGlobalXCodeGenerator(cmake* cm, std::string const& version);
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.
std::string GetName() const CM_OVERRIDE
{
return cmGlobalXCodeGenerator::GetActualName();
}
static std::string GetActualName() { return "Xcode"; }
2005-01-24 22:35:54 +00:00
/** Get the documentation entry for this generator. */
static void GetDocumentation(cmDocumentationEntry& entry);
2005-01-24 22:35:54 +00:00
///! Create a local generator appropriate to this Global Generator
cmLocalGenerator* CreateLocalGenerator(cmMakefile* mf) CM_OVERRIDE;
2005-01-24 22:35:54 +00:00
/**
2014-10-09 23:22:45 +00:00
* Try to determine system information such as shared library
* extension, pthreads, byte order etc.
2005-01-24 22:35:54 +00:00
*/
void EnableLanguage(std::vector<std::string> const& languages, cmMakefile*,
bool optional) CM_OVERRIDE;
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.
*/
void GenerateBuildCommand(std::vector<std::string>& makeCommand,
const std::string& makeProgram,
const std::string& projectName,
const std::string& projectDir,
const std::string& targetName,
const std::string& config, bool fast, bool verbose,
std::vector<std::string> const& makeOptions =
std::vector<std::string>()) CM_OVERRIDE;
2005-01-24 22:35:54 +00:00
/** Append the subdirectory for the given configuration. */
void AppendDirectoryForConfig(const std::string& prefix,
const std::string& config,
const std::string& suffix,
std::string& dir) CM_OVERRIDE;
bool FindMakeProgram(cmMakefile*) CM_OVERRIDE;
2006-02-24 22:35:35 +00:00
///! What is the configurations directory variable called?
const char* GetCMakeCFGIntDir() const CM_OVERRIDE;
///! expand CFGIntDir
std::string ExpandCFGIntDir(const std::string& str,
const std::string& config) const CM_OVERRIDE;
2006-02-24 22:35:35 +00:00
void SetCurrentLocalGenerator(cmLocalGenerator*);
/** Return true if the generated build tree may contain multiple builds.
i.e. "Can I build Debug and Release in the same tree?" */
bool IsMultiConfig() const CM_OVERRIDE;
bool SetGeneratorToolset(std::string const& ts, cmMakefile* mf) CM_OVERRIDE;
void AppendFlag(std::string& flags, std::string const& flag);
protected:
void AddExtraIDETargets() CM_OVERRIDE;
void Generate() CM_OVERRIDE;
private:
2015-10-19 19:23:29 +00:00
cmXCodeObject* CreateOrGetPBXGroup(cmGeneratorTarget* gtgt,
2005-03-17 20:35:44 +00:00
cmSourceGroup* sg);
cmXCodeObject* CreatePBXGroup(cmXCodeObject* parent, std::string name);
bool CreateGroups(std::vector<cmLocalGenerator*>& generators);
std::string XCodeEscapePath(const std::string& p);
std::string RelativeToSource(const char* p);
std::string RelativeToBinary(const char* p);
2005-02-24 22:46:49 +00:00
std::string ConvertToRelativeForMake(const char* p);
void CreateCustomCommands(cmXCodeObject* buildPhases,
cmXCodeObject* sourceBuildPhase,
cmXCodeObject* headerBuildPhase,
cmXCodeObject* resourceBuildPhase,
std::vector<cmXCodeObject*> contentBuildPhases,
cmXCodeObject* frameworkBuildPhase,
cmGeneratorTarget* gtgt);
std::string ComputeInfoPListLocation(cmGeneratorTarget* target);
void AddCommandsToBuildPhase(cmXCodeObject* buildphase,
cmGeneratorTarget* target,
std::vector<cmCustomCommand> const& commands,
const char* commandFileName);
void CreateCustomRulesMakefile(const char* makefileBasename,
2015-10-19 19:23:29 +00:00
cmGeneratorTarget* target,
std::vector<cmCustomCommand> const& commands,
const std::string& configName);
cmXCodeObject* FindXCodeTarget(const cmGeneratorTarget*);
2014-02-06 22:31:47 +00:00
std::string GetOrCreateId(const std::string& name, const std::string& id);
// 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);
cmXCodeObject* CreateString(const std::string& s);
2005-01-28 21:00:10 +00:00
cmXCodeObject* CreateObjectReference(cmXCodeObject*);
cmXCodeObject* CreateFlatClone(cmXCodeObject*);
cmXCodeObject* CreateXCodeTarget(cmGeneratorTarget* gtgt,
2005-02-02 22:16:07 +00:00
cmXCodeObject* buildPhases);
void ForceLinkerLanguages() CM_OVERRIDE;
void ForceLinkerLanguage(cmGeneratorTarget* gtgt);
const char* GetTargetLinkFlagsVar(const cmGeneratorTarget* target) const;
const char* GetTargetFileType(cmGeneratorTarget* target);
const char* GetTargetProductType(cmGeneratorTarget* target);
2015-10-19 19:23:29 +00:00
std::string AddConfigurations(cmXCodeObject* target,
cmGeneratorTarget* gtgt);
void AppendOrAddBuildSetting(cmXCodeObject* settings, const char* attr,
const char* value);
void AppendBuildSettingAttribute(cmXCodeObject* target, const char* attr,
const char* value,
const std::string& configName);
cmXCodeObject* CreateUtilityTarget(cmGeneratorTarget* gtgt);
2005-02-03 22:42:55 +00:00
void AddDependAndLinkInformation(cmXCodeObject* target);
void CreateBuildSettings(cmGeneratorTarget* gtgt,
2005-02-02 22:16:07 +00:00
cmXCodeObject* buildSettings,
const std::string& buildType);
2005-09-02 20:29:32 +00:00
std::string ExtractFlag(const char* flag, std::string& flags);
std::string ExtractFlagRegex(const char* exp, int matchIndex,
std::string& flags);
void FilterConfigurationAttribute(std::string const& configName,
std::string& attribute);
void SortXCodeObjects();
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();
bool CreateXCodeObjects(cmLocalGenerator* root,
2005-01-24 22:35:54 +00:00
std::vector<cmLocalGenerator*>& generators);
void OutputXCodeProject(cmLocalGenerator* root,
std::vector<cmLocalGenerator*>& generators);
void WriteXCodePBXProj(std::ostream& fout, cmLocalGenerator* root,
std::vector<cmLocalGenerator*>& generators);
cmXCodeObject* CreateXCodeFileReferenceFromPath(const std::string& fullpath,
cmGeneratorTarget* target,
const std::string& lang,
cmSourceFile* sf);
cmXCodeObject* CreateXCodeSourceFileFromPath(const std::string& fullpath,
cmGeneratorTarget* target,
const std::string& lang,
cmSourceFile* sf);
2008-10-10 12:11:08 +00:00
cmXCodeObject* CreateXCodeFileReference(cmSourceFile* sf,
cmGeneratorTarget* target);
cmXCodeObject* CreateXCodeSourceFile(cmLocalGenerator* gen, cmSourceFile* sf,
cmGeneratorTarget* gtgt);
bool CreateXCodeTargets(cmLocalGenerator* gen, std::vector<cmXCodeObject*>&);
bool IsHeaderFile(cmSourceFile*);
void AddDependTarget(cmXCodeObject* target, cmXCodeObject* dependTarget);
void CreateXCodeDependHackTarget(std::vector<cmXCodeObject*>& targets);
2005-02-18 18:32:51 +00:00
bool SpecialTargetEmitted(std::string const& tname);
void SetGenerationRoot(cmLocalGenerator* root);
void AddExtraTargets(cmLocalGenerator* root,
2005-02-18 18:32:51 +00:00
std::vector<cmLocalGenerator*>& gens);
cmXCodeObject* CreateBuildPhase(const char* name, const char* name2,
cmGeneratorTarget* target,
2005-02-28 20:07:13 +00:00
const std::vector<cmCustomCommand>&);
void CreateReRunCMakeFile(cmLocalGenerator* root,
std::vector<cmLocalGenerator*> const& gens);
std::string LookupFlags(const std::string& varNamePrefix,
const std::string& varNameLang,
const std::string& varNameSuffix,
const std::string& default_flags);
class Factory;
class BuildObjectListOrString;
friend class BuildObjectListOrString;
void AppendDefines(BuildObjectListOrString& defs, const char* defines_list,
bool dflag = false);
void AppendDefines(BuildObjectListOrString& defs,
std::vector<std::string> const& defines,
bool dflag = false);
void ComputeTargetObjectDirectory(cmGeneratorTarget* gt) const CM_OVERRIDE;
protected:
const char* GetInstallTargetName() const CM_OVERRIDE { return "install"; }
const char* GetPackageTargetName() const CM_OVERRIDE { return "package"; }
unsigned int XcodeVersion;
std::string VersionString;
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:
std::string const& GetXcodeBuildCommand();
std::string FindXcodeBuildCommand();
std::string XcodeBuildCommand;
bool XcodeBuildCommandInitialized;
void PrintCompilerAdvice(std::ostream&, std::string const&,
const char*) const CM_OVERRIDE
{
}
std::string GetObjectsNormalDirectory(const std::string& projName,
const std::string& configName,
const cmGeneratorTarget* t) const;
void addObject(cmXCodeObject* obj);
std::string PostBuildMakeTarget(std::string const& tName,
std::string const& configName);
2006-03-15 16:02:08 +00:00
cmXCodeObject* MainGroupChildren;
cmXCodeObject* SourcesGroupChildren;
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;
std::set<std::string> TargetDoneSet;
std::vector<std::string> ProjectSourceDirectoryComponents;
2006-03-15 16:02:08 +00:00
std::vector<std::string> ProjectOutputDirectoryComponents;
std::map<std::string, cmXCodeObject*> GroupMap;
std::map<std::string, cmXCodeObject*> GroupNameMap;
std::map<std::string, cmXCodeObject*> TargetGroup;
std::map<std::string, cmXCodeObject*> FileRefs;
std::map<cmGeneratorTarget const*, cmXCodeObject*> XCodeObjectMap;
std::vector<std::string> Architectures;
std::string GeneratorToolset;
2005-01-24 22:35:54 +00:00
};
#endif