2012-03-07 20:44:48 +04:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2000-2012 Kitware, Inc., Insight Software Consortium
|
|
|
|
|
|
|
|
Distributed under the OSI-approved BSD License (the "License");
|
|
|
|
see accompanying file Copyright.txt for details.
|
|
|
|
|
|
|
|
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.
|
|
|
|
============================================================================*/
|
|
|
|
#ifndef cmGeneratorTarget_h
|
|
|
|
#define cmGeneratorTarget_h
|
|
|
|
|
|
|
|
#include "cmStandardIncludes.h"
|
|
|
|
|
|
|
|
class cmCustomCommand;
|
|
|
|
class cmGlobalGenerator;
|
|
|
|
class cmLocalGenerator;
|
|
|
|
class cmMakefile;
|
|
|
|
class cmSourceFile;
|
|
|
|
class cmTarget;
|
|
|
|
|
|
|
|
class cmGeneratorTarget
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
cmGeneratorTarget(cmTarget*);
|
|
|
|
|
2012-09-17 14:02:24 +04:00
|
|
|
int GetType() const;
|
2014-02-07 02:31:47 +04:00
|
|
|
std::string GetName() const;
|
2013-09-03 00:27:32 +04:00
|
|
|
const char *GetProperty(const std::string& prop) const;
|
|
|
|
bool GetPropertyAsBool(const std::string& prop) const;
|
2014-02-13 20:25:00 +04:00
|
|
|
void GetSourceFiles(std::vector<cmSourceFile*>& files,
|
|
|
|
const std::string& config) const;
|
2012-09-17 14:02:24 +04:00
|
|
|
|
2014-02-13 20:25:00 +04:00
|
|
|
void GetObjectSources(std::vector<cmSourceFile const*> &,
|
|
|
|
const std::string& config) const;
|
2013-11-10 14:22:44 +04:00
|
|
|
const std::string& GetObjectName(cmSourceFile const* file);
|
|
|
|
|
|
|
|
bool HasExplicitObjectName(cmSourceFile const* file) const;
|
2014-03-13 15:28:32 +04:00
|
|
|
void AddExplicitObjectName(cmSourceFile const* sf);
|
2013-11-10 14:22:44 +04:00
|
|
|
|
2014-02-13 20:25:00 +04:00
|
|
|
void GetResxSources(std::vector<cmSourceFile const*>&,
|
|
|
|
const std::string& config) const;
|
|
|
|
void GetIDLSources(std::vector<cmSourceFile const*>&,
|
|
|
|
const std::string& config) const;
|
|
|
|
void GetExternalObjects(std::vector<cmSourceFile const*>&,
|
|
|
|
const std::string& config) const;
|
|
|
|
void GetHeaderSources(std::vector<cmSourceFile const*>&,
|
|
|
|
const std::string& config) const;
|
|
|
|
void GetExtraSources(std::vector<cmSourceFile const*>&,
|
|
|
|
const std::string& config) const;
|
|
|
|
void GetCustomCommands(std::vector<cmSourceFile const*>&,
|
|
|
|
const std::string& config) const;
|
|
|
|
void GetExpectedResxHeaders(std::set<std::string>&,
|
|
|
|
const std::string& config) const;
|
2013-11-10 14:22:44 +04:00
|
|
|
|
2014-03-14 16:21:26 +04:00
|
|
|
void ComputeObjectMapping();
|
|
|
|
|
2012-03-07 20:44:48 +04:00
|
|
|
cmTarget* Target;
|
|
|
|
cmMakefile* Makefile;
|
|
|
|
cmLocalGenerator* LocalGenerator;
|
2014-01-10 16:19:15 +04:00
|
|
|
cmGlobalGenerator const* GlobalGenerator;
|
2012-03-07 20:44:48 +04:00
|
|
|
|
2014-02-13 20:25:00 +04:00
|
|
|
std::string GetModuleDefinitionFile(const std::string& config) const;
|
2012-03-07 20:44:48 +04:00
|
|
|
|
2012-03-09 01:32:03 +04:00
|
|
|
/** Full path with trailing slash to the top-level directory
|
|
|
|
holding object files for this target. Includes the build
|
|
|
|
time config name placeholder if needed for the generator. */
|
|
|
|
std::string ObjectDirectory;
|
|
|
|
|
2014-02-13 20:25:00 +04:00
|
|
|
void UseObjectLibraries(std::vector<std::string>& objs,
|
|
|
|
const std::string& config) const;
|
2012-03-12 22:40:58 +04:00
|
|
|
|
2014-02-10 07:48:34 +04:00
|
|
|
void GetAppleArchs(const std::string& config,
|
2013-11-03 17:10:12 +04:00
|
|
|
std::vector<std::string>& archVec) const;
|
2012-09-16 03:19:54 +04:00
|
|
|
|
2014-05-21 17:38:24 +04:00
|
|
|
/** Return the rule variable used to create this type of target. */
|
|
|
|
std::string GetCreateRuleVariable(std::string const& lang,
|
|
|
|
std::string const& config) const;
|
2012-09-16 03:19:54 +04:00
|
|
|
|
2012-09-16 12:03:42 +04:00
|
|
|
/** Get the include directories for this target. */
|
2014-02-10 07:48:34 +04:00
|
|
|
std::vector<std::string> GetIncludeDirectories(
|
|
|
|
const std::string& config) const;
|
2012-09-16 12:03:42 +04:00
|
|
|
|
2014-02-10 07:48:34 +04:00
|
|
|
bool IsSystemIncludeDirectory(const std::string& dir,
|
|
|
|
const std::string& config) const;
|
2013-07-02 00:28:26 +04:00
|
|
|
|
2012-09-14 21:04:25 +04:00
|
|
|
/** Add the target output files to the global generator manifest. */
|
2014-02-10 07:48:34 +04:00
|
|
|
void GenerateTargetManifest(const std::string& config) const;
|
2012-09-14 21:04:25 +04:00
|
|
|
|
2012-10-11 02:57:11 +04:00
|
|
|
/**
|
|
|
|
* Trace through the source files in this target and add al source files
|
|
|
|
* that they depend on, used by all generators
|
|
|
|
*/
|
|
|
|
void TraceDependencies();
|
|
|
|
|
|
|
|
/** Get sources that must be built before the given source. */
|
2014-03-13 03:19:50 +04:00
|
|
|
std::vector<cmSourceFile*> const*
|
|
|
|
GetSourceDepends(cmSourceFile const* sf) const;
|
2012-10-11 02:57:11 +04:00
|
|
|
|
2014-02-06 14:24:37 +04:00
|
|
|
/**
|
|
|
|
* Flags for a given source file as used in this target. Typically assigned
|
|
|
|
* via SET_TARGET_PROPERTIES when the property is a list of source files.
|
|
|
|
*/
|
|
|
|
enum SourceFileType
|
|
|
|
{
|
|
|
|
SourceFileTypeNormal,
|
|
|
|
SourceFileTypePrivateHeader, // is in "PRIVATE_HEADER" target property
|
|
|
|
SourceFileTypePublicHeader, // is in "PUBLIC_HEADER" target property
|
|
|
|
SourceFileTypeResource, // is in "RESOURCE" target property *or*
|
|
|
|
// has MACOSX_PACKAGE_LOCATION=="Resources"
|
|
|
|
SourceFileTypeMacContent // has MACOSX_PACKAGE_LOCATION!="Resources"
|
|
|
|
};
|
|
|
|
struct SourceFileFlags
|
|
|
|
{
|
|
|
|
SourceFileFlags(): Type(SourceFileTypeNormal), MacFolder(0) {}
|
|
|
|
SourceFileFlags(SourceFileFlags const& r):
|
|
|
|
Type(r.Type), MacFolder(r.MacFolder) {}
|
|
|
|
SourceFileType Type;
|
|
|
|
const char* MacFolder; // location inside Mac content folders
|
|
|
|
};
|
|
|
|
|
|
|
|
struct SourceFileFlags
|
|
|
|
GetTargetSourceFileFlags(const cmSourceFile* sf) const;
|
|
|
|
|
2014-02-14 00:07:31 +04:00
|
|
|
struct ResxData {
|
|
|
|
mutable std::set<std::string> ExpectedResxHeaders;
|
2014-03-13 02:06:05 +04:00
|
|
|
mutable std::vector<cmSourceFile const*> ResxSources;
|
2014-02-14 00:07:31 +04:00
|
|
|
};
|
2013-11-10 14:22:44 +04:00
|
|
|
private:
|
|
|
|
friend class cmTargetTraceDependencies;
|
2012-10-11 02:57:11 +04:00
|
|
|
struct SourceEntry { std::vector<cmSourceFile*> Depends; };
|
2014-03-13 03:19:50 +04:00
|
|
|
typedef std::map<cmSourceFile const*, SourceEntry> SourceEntriesType;
|
2012-10-11 02:57:11 +04:00
|
|
|
SourceEntriesType SourceEntries;
|
2014-02-14 00:07:31 +04:00
|
|
|
|
2014-03-14 16:21:26 +04:00
|
|
|
mutable std::map<cmSourceFile const*, std::string> Objects;
|
2013-11-10 14:22:44 +04:00
|
|
|
std::set<cmSourceFile const*> ExplicitObjectName;
|
2013-11-03 17:10:12 +04:00
|
|
|
mutable std::map<std::string, std::vector<std::string> > SystemIncludesCache;
|
2013-07-02 16:30:10 +04:00
|
|
|
|
2014-02-06 14:24:37 +04:00
|
|
|
void ConstructSourceFileFlags() const;
|
|
|
|
mutable bool SourceFileFlagsConstructed;
|
|
|
|
mutable std::map<cmSourceFile const*, SourceFileFlags> SourceFlagsMap;
|
|
|
|
|
2012-03-07 20:44:48 +04:00
|
|
|
cmGeneratorTarget(cmGeneratorTarget const&);
|
|
|
|
void operator=(cmGeneratorTarget const&);
|
|
|
|
};
|
|
|
|
|
2013-11-20 19:58:01 +04:00
|
|
|
struct cmStrictTargetComparison {
|
2013-12-04 16:35:39 +04:00
|
|
|
bool operator()(cmTarget const* t1, cmTarget const* t2) const;
|
2013-11-20 19:58:01 +04:00
|
|
|
};
|
|
|
|
|
2013-12-10 18:44:39 +04:00
|
|
|
typedef std::map<cmTarget const*,
|
2013-11-20 19:58:01 +04:00
|
|
|
cmGeneratorTarget*,
|
|
|
|
cmStrictTargetComparison> cmGeneratorTargetsType;
|
2012-09-13 02:03:23 +04:00
|
|
|
|
2012-03-07 20:44:48 +04:00
|
|
|
#endif
|